1
0
mirror of https://github.com/tmux/tmux.git synced 2025-04-26 06:48:48 +00:00

__progname is not const, pointed out by deraadt.

This commit is contained in:
Nicholas Marriott 2009-07-21 18:38:52 +00:00
parent 725938fb85
commit b9a179089b

2
tmux.h
View File

@ -38,7 +38,7 @@
#include "array.h" #include "array.h"
extern const char *__progname; extern char *__progname;
/* Default configuration files. */ /* Default configuration files. */
#define DEFAULT_CFG ".tmux.conf" #define DEFAULT_CFG ".tmux.conf"