diff options
author | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2022-01-18 15:19:13 +0300 |
---|---|---|
committer | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2022-01-18 15:19:13 +0300 |
commit | ba2d078858f4bd7c4e83cd7c44cc940fa9edb6d9 (patch) | |
tree | dae870af288868839a59df6d1c8a013bcd591fe8 | |
parent | bd41946e8f4f2086f7b2fcacc468a668c0676aff (diff) | |
download | libmicrohttpd-ba2d078858f4bd7c4e83cd7c44cc940fa9edb6d9.tar.gz libmicrohttpd-ba2d078858f4bd7c4e83cd7c44cc940fa9edb6d9.zip |
largepost: fixed code style
-rw-r--r-- | doc/examples/largepost.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/largepost.c b/doc/examples/largepost.c index 58649508..ee9e85da 100644 --- a/doc/examples/largepost.c +++ b/doc/examples/largepost.c | |||
@@ -86,7 +86,7 @@ const char *fileexistspage = | |||
86 | "<html><body>This file already exists.</body></html>"; | 86 | "<html><body>This file already exists.</body></html>"; |
87 | const char *fileioerror = | 87 | const char *fileioerror = |
88 | "<html><body>IO error writing to disk.</body></html>"; | 88 | "<html><body>IO error writing to disk.</body></html>"; |
89 | const char*const postprocerror = | 89 | const char *const postprocerror = |
90 | "<html><head><title>Error</title></head><body>Error processing POST data</body></html>"; | 90 | "<html><head><title>Error</title></head><body>Error processing POST data</body></html>"; |
91 | 91 | ||
92 | 92 | ||