Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 303043 | Differences between
and this patch

Collapse All | Expand All

(-)a/hardware/arduino/cores/arduino/Print.cpp (-1 / +1 lines)
Lines 41-47 size_t Print::write(const uint8_t *buffer, size_t size) Link Here
41
41
42
size_t Print::print(const __FlashStringHelper *ifsh)
42
size_t Print::print(const __FlashStringHelper *ifsh)
43
{
43
{
44
  const prog_char *p = (const prog_char *)ifsh;
44
  const char PROGMEM *p = (const char PROGMEM *)ifsh;
45
  size_t n = 0;
45
  size_t n = 0;
46
  while (1) {
46
  while (1) {
47
    unsigned char c = pgm_read_byte(p++);
47
    unsigned char c = pgm_read_byte(p++);

Return to bug 303043