From 3fba377ddd6fd234c614b53d5402153c6489b505 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sun, 6 Oct 2013 00:18:00 +0100 Subject: retcode -> retval for exit message. --- tmux.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 3b4f8150..7d082796 100644 --- a/tmux.h +++ b/tmux.h @@ -1295,8 +1295,9 @@ RB_HEAD(status_out_tree, status_out); /* Client connection. */ struct client { struct imsgbuf ibuf; + struct event event; - int retcode; + int retval; struct timeval creation_time; struct timeval activity_time; -- cgit