aboutsummaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-12-07 09:38:57 +0000
committerGuy Harris <guy@alum.mit.edu>2005-12-07 09:38:57 +0000
commit283fce750098854c40edce0cb0f3f3828854d421 (patch)
tree0bbc45cf630bd4fb922c6b7f3d3c8dd4f758f580 /util.c
parent9fea197bf90c55c7816ed82b072d0d2b923581b5 (diff)
Clear up const vs. non-const warnings.
svn path=/trunk/; revision=16717
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;