aboutsummaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-12-07 09:38:57 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-12-07 09:38:57 +0000
commitc19549c2cc5818d496e8768036773707f476e6ab (patch)
tree0bbc45cf630bd4fb922c6b7f3d3c8dd4f758f580 /util.c
parent9fe20b5cd476a53ebe7f3cf8b1547767324555c3 (diff)
Clear up const vs. non-const warnings.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@16717 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'util.c')
-rw-r--r--util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.c b/util.c
index 79411648a9..a17cc5ad5e 100644
--- a/util.c
+++ b/util.c
@@ -155,7 +155,7 @@ try_tempfile(char *namebuf, int namebuflen, const char *dir, const char *pfx)
static const char *tmpdir = NULL;
#ifdef _WIN32
-static char *temp = NULL;
+static const char *temp = NULL;
#endif
static const char *E_tmpdir;