Commit 677cd728 authored by Tristan Gingold's avatar Tristan Gingold

wrpc.c: fix variable type for vuart

could prevent C-a to exit
parent 51a1c486
Pipeline #4932 passed with stage
in 3 minutes and 26 seconds
......@@ -1209,7 +1209,8 @@ static void wrpc_vuart_term(struct board *board,
int need_exit = 0;
fd_set fds;
int ret;
int rx, tx;
unsigned char tx;
int rx;
time_t start_time;
fprintf(stderr, "[press C-a to exit]\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment