diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2020-04-18 14:21:40 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2020-04-18 14:21:40 +0000 |
commit | 768f1bd27b3e2653917919faee1319a8c8a50b6b (patch) | |
tree | d3795fee71f13e0be78eaff14d61d9b288d7e6c8 /usr.bin/tmux/tmux.h | |
parent | 61ed4422994669fea06aa20f43a95bebe8b8d8ca (diff) |
Use size_t not u_int for the bytes counters and fix a const missing.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 042606a2520..567d967b5f9 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.1006 2020/04/18 07:32:54 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.1007 2020/04/18 14:21:39 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -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; |