diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-11-26 23:13:47 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-11-26 23:13:47 +0000 |
commit | 106ee8f30a27d60aa4e113e17ba48792cfc64e50 (patch) | |
tree | 55c7857de53458354a152ad1c3378b4d03524a43 /tmux.h | |
parent | 1acf066fb97226bf178177f2521b35eb08261d7e (diff) | |
download | rtmux-106ee8f30a27d60aa4e113e17ba48792cfc64e50.tar.gz rtmux-106ee8f30a27d60aa4e113e17ba48792cfc64e50.tar.bz2 rtmux-106ee8f30a27d60aa4e113e17ba48792cfc64e50.zip |
This doesn't need to be u_int.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |