diff options
author | 2009-11-26 23:13:47 +0000 | |
---|---|---|
committer | 2009-11-26 23:13:47 +0000 | |
commit | 87d8839f31832a59d7b2da70aa5ab6e05505b161 (patch) | |
tree | 3562f95a8d7514a2cd9727f22174e8c476791f95 /usr.bin/tmux/tmux.h | |
parent | - let this compile again. (diff) | |
download | wireguard-openbsd-87d8839f31832a59d7b2da70aa5ab6e05505b161.tar.xz wireguard-openbsd-87d8839f31832a59d7b2da70aa5ab6e05505b161.zip |
This doesn't need to be u_int.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 25d222164d5..24c6354b701 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.187 2009/11/26 22:28:24 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.188 2009/11/26 23:13:47 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1408,7 +1408,7 @@ int paste_replace(struct paste_stack *, u_int, char *, size_t); /* clock.c */ extern const char clock_table[14][5][5]; -void clock_draw(struct screen_write_ctx *, u_int, int); +void clock_draw(struct screen_write_ctx *, int, int); /* cmd.c */ int cmd_pack_argv(int, char **, char *, size_t); |