1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-02-05 18:05:16 +00:00

MFp4: Remove bogus \r

This commit is contained in:
Warner Losh 2006-11-09 19:55:25 +00:00
parent a05bf06920
commit 728ba3929d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=164132

View File

@ -36,8 +36,8 @@ main(void)
while (xmodem_rx(addr) == -1)
continue;
InitEEPROM();
printf("Writing EEPROM from 0x%x to addr 0\r\n", addr);
printf("Writing EEPROM from 0x%x to addr 0\n", addr);
WriteEEPROM(0, addr, 8192);
printf("Write complete. Press reset\r\n");
printf("Write complete. Press reset\n");
return (1);
}