diff options
author | Guy Harris <guy@alum.mit.edu> | 2005-12-07 09:38:57 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2005-12-07 09:38:57 +0000 |
commit | 283fce750098854c40edce0cb0f3f3828854d421 (patch) | |
tree | 0bbc45cf630bd4fb922c6b7f3d3c8dd4f758f580 /util.c | |
parent | 9fea197bf90c55c7816ed82b072d0d2b923581b5 (diff) | |
download | wireshark-283fce750098854c40edce0cb0f3f3828854d421.tar.gz wireshark-283fce750098854c40edce0cb0f3f3828854d421.tar.bz2 wireshark-283fce750098854c40edce0cb0f3f3828854d421.zip |
Clear up const vs. non-const warnings.
svn path=/trunk/; revision=16717
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |