summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-07-21 18:38:52 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-07-21 18:38:52 +0000
commitb9a179089b7edec7930115ac7f1b5ae8e96f8792 (patch)
tree3938cb19ac0c5171971b2951e009319dec3e63a6 /tmux.h
parent725938fb85290ca67ab50e27f9cacb870ff56c63 (diff)
__progname is not const, pointed out by deraadt.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 34a0fd9b..ca946e7b 100644
--- a/tmux.h
+++ b/tmux.h
@@ -38,7 +38,7 @@
#include "array.h"
-extern const char *__progname;
+extern char *__progname;
/* Default configuration files. */
#define DEFAULT_CFG ".tmux.conf"