aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-04-11 14:52:17 +0000
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-04-11 14:52:17 +0000
commitdc1eb9a9d79d4272d8d29348ca37a10634eb7e8f (patch)
tree256ec54e74684ecc6e50dcb636d1013c2ee72169
parentd4d4393a1607b761d460ff51d865397c0a92942c (diff)
downloadlibmicrohttpd-dc1eb9a9d79d4272d8d29348ca37a10634eb7e8f.tar.gz
libmicrohttpd-dc1eb9a9d79d4272d8d29348ca37a10634eb7e8f.zip
largepost.c: corrected const pointer to const char
-rw-r--r--doc/examples/largepost.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/largepost.c b/doc/examples/largepost.c
index 01d005ab..dc0e76c0 100644
--- a/doc/examples/largepost.c
+++ b/doc/examples/largepost.c
@@ -65,7 +65,7 @@ const char *servererrorpage =
65 "<html><body>An internal server error has occured.</body></html>"; 65 "<html><body>An internal server error has occured.</body></html>";
66const char *fileexistspage = 66const char *fileexistspage =
67 "<html><body>This file already exists.</body></html>"; 67 "<html><body>This file already exists.</body></html>";
68const char const *postprocerror = 68const char* const postprocerror =
69 "<html><head><title>Error</title></head><body>Error processing POST data</body></html>"; 69 "<html><head><title>Error</title></head><body>Error processing POST data</body></html>";
70 70
71 71