Use size_t not u_int for the bytes counters and fix a const missing.

This commit is contained in:
nicm
2020-04-18 14:21:39 +00:00
parent c87595326c
commit 4a93294152
2 changed files with 3 additions and 3 deletions

4
tmux.h
View File

@ -934,8 +934,8 @@ struct window_pane {
char *searchstr;
int searchregex;
u_int written;
u_int skipped;
size_t written;
size_t skipped;
TAILQ_ENTRY(window_pane) entry;
RB_ENTRY(window_pane) tree_entry;