diff options
author | Christian Grothoff <christian@grothoff.org> | 2016-08-15 11:05:56 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2016-08-15 11:05:56 +0000 |
commit | bd629c51f6ccdacdde67549b457be59b34b05b08 (patch) | |
tree | c4f2becdb2ad1d3d46a7015d1ce1d11755bb6bc6 | |
parent | 7b1a97858136d6b7c4a136ba2b8c6da2b9c73fd7 (diff) |
-use const, as this may actually point to a const string
-rw-r--r-- | src/microhttpd/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h index dd56de0c..510d56a5 100644 --- a/src/microhttpd/internal.h +++ b/src/microhttpd/internal.h @@ -613,7 +613,7 @@ struct MHD_Connection * Requested URL (everything after "GET" only). Allocated * in pool. */ - char *url; + const char *url; /** * HTTP version string (i.e. http/1.1). Allocated |