diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-07-21 18:38:53 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-07-21 18:38:53 +0000 |
commit | aae9127d3a9bd578f14c460a59375eb4fb3be7ad (patch) | |
tree | a03243fb872740c5cfb55c316c0de99e896bcc81 /usr.bin | |
parent | e7796ea112614fab8a2d1f5ceee96df733f498cc (diff) |
__progname is not const, pointed out by deraadt.
Diffstat (limited to 'usr.bin')
-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" |