fix: invalidPrintfArg

This commit is contained in:
iceman1001 2019-04-05 18:47:36 +02:00
commit ea5dddafef
5 changed files with 10 additions and 10 deletions

View file

@ -206,7 +206,7 @@ serial_port uart_open(const char *pcPortName, uint32_t speed) {
}
}
}
printf("[=] UART Setting serial baudrate %i\n", speed);
printf("[=] UART Setting serial baudrate %u\n", speed);
return sp;
}