diff options
author | Zach Eveland <zeveland@blacklabel-development.com> | 2011-09-05 12:53:45 -0400 |
---|---|---|
committer | Zach Eveland <zeveland@blacklabel-development.com> | 2011-09-05 12:53:45 -0400 |
commit | 280f381265f8b8e339c92cbcb95d09cec1ec2f19 (patch) | |
tree | 157b6b2894b97287414d589f6699f22083b507f2 /cores/arduino/Print.h | |
parent | 90ea0707e6e3fb251b3eaf6c8682f68dd44299e1 (diff) | |
parent | 560a510f6434efdfa0ebcfa9cd01093714e37f43 (diff) |
Merge branch 'new-extension' of https://github.com/arduino/Arduino into new-extension
Conflicts:
build/macosx/dist/tools-universal.zip
build/windows/avr_tools.zip
hardware/arduino/cores/arduino/HardwareSerial.cpp
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; |