Skip to content

Commit

Permalink
Merge pull request #1 from linusnielsen/master
Browse files Browse the repository at this point in the history
Remove stray Serial.println() call
  • Loading branch information
Naguissa authored Apr 12, 2019
2 parents 2936d25 + 40fee85 commit fad50ce
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/uEEPROMLib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ bool uEEPROMLib::eeprom_write(const unsigned int address, void *data, const uint
for (i = 0; i < n; i++) {
r &= _eeprom_write(address + i, (byte) *(((byte *) data) + i));
}
Serial.println();
return r;
}

Expand Down

0 comments on commit fad50ce

Please sign in to comment.