diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-11-20 18:11:37 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-11-20 18:11:37 +0000 |
commit | c0572ea9929b86071dcce6d7a9616164c6450d71 (patch) | |
tree | 402349a123be43fb9ce8f2f381c8589d752ff456 /tmux.h | |
parent | b04bffc9c99045776abea011cc95f5819a939872 (diff) | |
download | rtmux-c0572ea9929b86071dcce6d7a9616164c6450d71.tar.gz rtmux-c0572ea9929b86071dcce6d7a9616164c6450d71.tar.bz2 rtmux-c0572ea9929b86071dcce6d7a9616164c6450d71.zip |
Fix a format string bug and sprinkle some printflikes.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.81 2007-11-16 21:31:03 nicm Exp $ */ +/* $Id: tmux.h,v 1.82 2007-11-20 18:11:37 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -653,7 +653,7 @@ void server_clear_window_cur(struct window *); void server_clear_window_all(struct window *); void server_redraw_window_cur(struct window *); void server_redraw_window_all(struct window *); -void server_write_message(struct client *, const char *, ...); +void printflike2 server_write_message(struct client *, const char *, ...); /* status.c */ void status_write(struct client *c); |