diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-02-13 07:05:15 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-02-13 07:05:15 +0000 |
commit | 372b141d5b062fdf020104e1bad68b37e6508122 (patch) | |
tree | 0bc02da6fc30f9e22091b90fff365a240d413334 | |
parent | 115e74a8adef7f8e509b083015fdbf8b453efb1d (diff) |
make the path const
-rw-r--r-- | tests/server/sws.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/server/sws.c b/tests/server/sws.c index f2f465003..770dec049 100644 --- a/tests/server/sws.c +++ b/tests/server/sws.c @@ -73,7 +73,7 @@ spitout(FILE *stream, #define TEST_DATA_PATH "%s/data/test%d" /* global variable, where to find the 'data' dir */ -char *path="."; +const char *path="."; enum { DOCNUMBER_QUIT = -6, |