From 4a93294152efb921bb5bada71164c47a57518e31 Mon Sep 17 00:00:00 2001 From: nicm Date: Sat, 18 Apr 2020 14:21:39 +0000 Subject: Use size_t not u_int for the bytes counters and fix a const missing. --- tmux.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 64b09abf..edc2f377 100644 --- a/tmux.h +++ b/tmux.h @@ -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; -- cgit