diff options
author | David A. Mellis <d.mellis@arduino.cc> | 2011-08-31 15:39:20 -0400 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2011-08-31 15:39:20 -0400 |
commit | 84a0ad9fd3be4e90d3dbd730246dc30851012a09 (patch) | |
tree | a5c21be3b12763128692fad216e318928fb2967e /cores/arduino/Print.h | |
parent | 527ff3c7f8e3409ce0ea78b7fa689acd34d51332 (diff) |
Renaming writeError() to getWriteError() in Print (and Stream and friends).
http://code.google.com/p/arduino/issues/detail?id=608
Diffstat (limited to 'cores/arduino/Print.h')
-rwxr-xr-x | cores/arduino/Print.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cores/arduino/Print.h b/cores/arduino/Print.h index fce302e..8530b03 100755 --- a/cores/arduino/Print.h +++ b/cores/arduino/Print.h @@ -42,7 +42,7 @@ class Print public: Print() : write_error(0) {} - int writeError() { return write_error; } + int getWriteError() { return write_error; } void clearWriteError() { setWriteError(0); } virtual size_t write(uint8_t) = 0; |