From b20a00f93e00d73786a2bf00bd8cecb8c5392e89 Mon Sep 17 00:00:00 2001 From: nicm Date: Tue, 19 Dec 2017 15:00:39 +0000 Subject: Report better error from server when socket create fails, GitHub issue 1201. --- tmux.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 43d9d846..71fadb08 100644 --- a/tmux.h +++ b/tmux.h @@ -1885,7 +1885,7 @@ void server_client_set_key_table(struct client *, const char *); const char *server_client_get_key_table(struct client *); int server_client_check_nested(struct client *); void server_client_handle_key(struct client *, key_code); -void server_client_create(int); +struct client *server_client_create(int); int server_client_open(struct client *, char **); void server_client_unref(struct client *); void server_client_lost(struct client *); -- cgit