diff options
author | 2009-07-21 18:38:52 +0000 | |
---|---|---|
committer | 2009-07-21 18:38:52 +0000 | |
commit | 715a757b81a64363eabc5195c6d2da3120e77f3b (patch) | |
tree | d1c76096d70282de44b48b863475228d26fd0dc9 | |
parent | Tidy up keys: use an enum for the key codes, and remove the macros which just (diff) | |
download | wireguard-openbsd-715a757b81a64363eabc5195c6d2da3120e77f3b.tar.xz wireguard-openbsd-715a757b81a64363eabc5195c6d2da3120e77f3b.zip |
__progname is not const, pointed out by deraadt.
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 76747eab938..df8814279af 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.41 2009/07/21 17:57:29 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.42 2009/07/21 18:38:52 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -38,7 +38,7 @@ #include "array.h" -extern const char *__progname; +extern char *__progname; /* Default configuration files. */ #define DEFAULT_CFG ".tmux.conf" |