summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2009-07-21 18:38:52 +0000
committernicm <nicm@openbsd.org>2009-07-21 18:38:52 +0000
commit715a757b81a64363eabc5195c6d2da3120e77f3b (patch)
treed1c76096d70282de44b48b863475228d26fd0dc9
parentTidy up keys: use an enum for the key codes, and remove the macros which just (diff)
downloadwireguard-openbsd-715a757b81a64363eabc5195c6d2da3120e77f3b.tar.xz
wireguard-openbsd-715a757b81a64363eabc5195c6d2da3120e77f3b.zip
__progname is not const, pointed out by deraadt.
-rw-r--r--usr.bin/tmux/tmux.h4
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"