mirror of
https://github.com/tio/tio.git
synced 2026-05-01 14:57:59 +02:00
Fixed printf() format type
This commit is contained in:
parent
7897b8519c
commit
3be7137c29
1 changed files with 1 additions and 1 deletions
|
|
@ -83,7 +83,7 @@ void handle_command_sequence(char input_char, char previous_char, char *output_c
|
||||||
case KEY_I:
|
case KEY_I:
|
||||||
tio_printf("Settings information:");
|
tio_printf("Settings information:");
|
||||||
tio_printf(" TTY device: %s", option.tty_device);
|
tio_printf(" TTY device: %s", option.tty_device);
|
||||||
tio_printf(" Baudrate: %d", option.baudrate);
|
tio_printf(" Baudrate: %u", option.baudrate);
|
||||||
tio_printf(" Databits: %d", option.databits);
|
tio_printf(" Databits: %d", option.databits);
|
||||||
tio_printf(" Flow: %s", option.flow);
|
tio_printf(" Flow: %s", option.flow);
|
||||||
tio_printf(" Stopbits: %d", option.stopbits);
|
tio_printf(" Stopbits: %d", option.stopbits);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue