aboutsummaryrefslogtreecommitdiff
path: root/cores
diff options
context:
space:
mode:
authorDavid A. Mellis <d.mellis@arduino.cc>2011-08-31 15:39:20 -0400
committerDavid A. Mellis <d.mellis@arduino.cc>2011-08-31 15:39:20 -0400
commit84a0ad9fd3be4e90d3dbd730246dc30851012a09 (patch)
treea5c21be3b12763128692fad216e318928fb2967e /cores
parent527ff3c7f8e3409ce0ea78b7fa689acd34d51332 (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')
-rwxr-xr-xcores/arduino/Print.h2
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;