diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-11-26 23:13:48 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-11-26 23:13:48 +0000 |
commit | 6f5b7aaddc859f35419e4f834a67f2d6f372f9da (patch) | |
tree | 52b13feb56e53369cf4a88677182960b7d4c089a /usr.bin/tmux/tmux.h | |
parent | 854d20f9441a2a0daf333bab64ad0dee7e7f6b63 (diff) |
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); |