Clear up const vs. non-const warnings.

svn path=/trunk/; revision=16717
This commit is contained in:
Guy Harris 2005-12-07 09:38:57 +00:00
parent 9fea197bf9
commit 283fce7500
1 changed files with 1 additions and 1 deletions

2
util.c
View File

@ -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;