From c0572ea9929b86071dcce6d7a9616164c6450d71 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 20 Nov 2007 18:11:37 +0000 Subject: Fix a format string bug and sprinkle some printflikes. --- tmux.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 289fa582..ebbc37cd 100644 --- a/tmux.h +++ b/tmux.h @@ -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 @@ -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); -- cgit