From b9a179089b7edec7930115ac7f1b5ae8e96f8792 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 21 Jul 2009 18:38:52 +0000 Subject: __progname is not const, pointed out by deraadt. --- tmux.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tmux.h') 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" -- cgit