diff options
author | Zach Eveland <zeveland@blacklabel-development.com> | 2012-02-22 15:19:32 -0500 |
---|---|---|
committer | Zach Eveland <zeveland@blacklabel-development.com> | 2012-02-22 15:19:32 -0500 |
commit | 66019a755039cca92c0bdd3d3c59c9b7114efac9 (patch) | |
tree | 18b8dd5f70ec5f7162ba79f7d795cfd4893dafe5 /cores/arduino | |
parent | 79481252081da0bdc4501cf039c060efcdf85c95 (diff) | |
parent | a7afdf40baf0598a97dbfeaf7d9bfcce93df74fd (diff) |
Merge branch 'master' of github.com:arduino/Arduino into LUFA_bootloader
Diffstat (limited to 'cores/arduino')
-rwxr-xr-x | cores/arduino/Print.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cores/arduino/Print.cpp b/cores/arduino/Print.cpp index ff9b154..e541a6c 100755 --- a/cores/arduino/Print.cpp +++ b/cores/arduino/Print.cpp @@ -41,7 +41,7 @@ size_t Print::write(const uint8_t *buffer, size_t size) size_t Print::print(const __FlashStringHelper *ifsh) { - const prog_char *p = (const prog_char *)ifsh; + const char PROGMEM *p = (const char PROGMEM *)ifsh; size_t n = 0; while (1) { unsigned char c = pgm_read_byte(p++); |