From 09a2246b00fdb5b18db13b65d6496511dabba238 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 13 May 2020 21:11:46 +0100 Subject: Use safe loop for freeing client files. --- tmux.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 932d85ec..4c9d229f 100644 --- a/tmux.h +++ b/tmux.h @@ -1506,7 +1506,7 @@ struct client_file { client_file_cb cb; void *data; - RB_ENTRY (client_file) entry; + RB_ENTRY(client_file) entry; }; RB_HEAD(client_files, client_file); -- cgit