aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-04-04 07:47:29 +0200
committerChristian Grothoff <christian@grothoff.org>2022-04-04 07:47:32 +0200
commit06819f2e894405e691bd8532b60836f32468f12c (patch)
tree7ad3b79dfb7914d77e9d59c92fe6fba9b0f94fb0
parent15e2a3a259aa6b2d1a623692f4fc76c502024071 (diff)
downloadlibmicrohttpd-06819f2e894405e691bd8532b60836f32468f12c.tar.gz
libmicrohttpd-06819f2e894405e691bd8532b60836f32468f12c.zip
-indentation fix
-rw-r--r--src/microhttpd/connection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index 9e59738c..513d6415 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -1901,7 +1901,7 @@ buffer_append (char *buf,
1901 * false if not enough space is available 1901 * false if not enough space is available
1902 */ 1902 */
1903#define buffer_append_s(buf,ppos,buf_size,str) \ 1903#define buffer_append_s(buf,ppos,buf_size,str) \
1904 buffer_append(buf,ppos,buf_size,str, MHD_STATICSTR_LEN_(str)) 1904 buffer_append (buf,ppos,buf_size,str, MHD_STATICSTR_LEN_ (str))
1905 1905
1906 1906
1907/** 1907/**