Remove file that should have been removed in previous commit.

Approved by:	wblock@ (maintainer)
This commit is contained in:
Wesley Shields 2012-07-13 00:48:08 +00:00
parent 638c247d83
commit 1d02afc1ea
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=300818

View file

@ -1,12 +0,0 @@
--- hardware/arduino/cores/arduino/Print.cpp.orig 2012-03-16 11:16:23.000000000 -0700
+++ hardware/arduino/cores/arduino/Print.cpp 2012-03-16 11:17:17.000000000 -0700
@@ -41,7 +41,7 @@
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++);
--- patch-hardware-arduino-cores-arduino-Print.cpp ends here ---