Skip to content

Commit

Permalink
fix format printf
Browse files Browse the repository at this point in the history
  • Loading branch information
berghetti committed Dec 12, 2021
1 parent d230b86 commit 2a65479
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tui.c
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ show_resume ( const struct config_op *co )
wattrset ( pad, color_scheme[RESUME] );
mvwprintw ( pad, 3, 25, "pps rx: " );
wattrset ( pad, color_scheme[RESUME_VALUE] );
wprintw ( pad, "%d", cur_pps_rx );
wprintw ( pad, "%ld", cur_pps_rx );
wattrset ( pad, color_scheme[RESUME] );
mvwprintw ( pad, 3, 40, "rate rx: " );
wattrset ( pad, color_scheme[RESUME_VALUE] );
Expand Down

0 comments on commit 2a65479

Please sign in to comment.