diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-04-30 23:35:51 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-04-30 23:35:51 +0000 |
commit | ad30341fa2f48a8b0fac99c2aa3dab2e719a89fb (patch) | |
tree | 63a7ea57fe8a31f008a8083f35203a07349a99d5 /tests | |
parent | 23da55a9f14ff5c48f0bc297f1ff745eb3dc7554 (diff) |
logfile name is const
Diffstat (limited to 'tests')
-rw-r--r-- | tests/server/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/server/util.c b/tests/server/util.c index 74d5dcdfe..3fea37c46 100644 --- a/tests/server/util.c +++ b/tests/server/util.c @@ -66,7 +66,7 @@ int ourerrno(void) } /* someone else must set this properly */ -extern char *serverlogfile; +extern const char *serverlogfile; void logmsg(const char *msg, ...) { |