aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-07-22 16:53:30 +0000
committerTiago Cunha <tcunha@gmx.com>2009-07-22 16:53:30 +0000
commit1bf524c1b7742caa843ac94131f175d19c8ca4e2 (patch)
tree8051b655529c9451d118d027b63839c225214e5c /tmux.h
parenta734488a4b84752000ee511b57f07d91ddc28a6d (diff)
downloadrtmux-1bf524c1b7742caa843ac94131f175d19c8ca4e2.tar.gz
rtmux-1bf524c1b7742caa843ac94131f175d19c8ca4e2.tar.bz2
rtmux-1bf524c1b7742caa843ac94131f175d19c8ca4e2.zip
Sync OpenBSD patchset 152:
__progname is not const, pointed out by deraadt. And, as a consequence change its declaration for operating systems which don't provide __progname as well.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmux.h b/tmux.h
index b2d43428..8fc993ec 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.375 2009-07-22 16:24:59 tcunha Exp $ */
+/* $OpenBSD: tmux.h,v 1.42 2009/07/21 18:38:52 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -37,7 +37,7 @@
#include "compat.h"
-extern const char *__progname;
+extern char *__progname;
/* Default configuration files. */
#define DEFAULT_CFG ".tmux.conf"