fix debug_print

master
Stefan Dorn 2016-08-08 20:35:00 +01:00
parent aff9a6b9cf
commit 70a8382000
1 changed files with 1 additions and 1 deletions

View File

@ -1357,7 +1357,7 @@ void usb_debug_flush_output(void) {
void usb_debug_print(const char *s) {
char c;
while ((c = pgm_read_byte(c))) {
while ((c = pgm_read_byte(s++))) {
usb_debug_putchar(c);
}
usb_debug_flush_output();