libmicrohttpd2

HTTP server C library (MHD 2.x, alpha)
Log | Files | Refs | README | LICENSE

commit 331b046e4df7b0d9bdbc93edf16f62f157301542
parent 02e26a6cb345745414dfd0ffde0a20226e373338
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
Date:   Fri, 13 Jun 2025 23:30:32 +0200

conn_data_send.c: fixed formatting

Diffstat:
Msrc/mhd2/conn_data_send.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mhd2/conn_data_send.c b/src/mhd2/conn_data_send.c @@ -248,7 +248,7 @@ mhd_conn_data_send (struct MHD_Connection *restrict c) true, &sent); } - #if defined(mhd_USE_SENDFILE) +#if defined(mhd_USE_SENDFILE) else if (mhd_REPLY_CNTN_LOC_FILE == c->rp.cntn_loc) { mhd_assert (mhd_RESPONSE_CONTENT_DATA_FILE == resp->cntn_dtype); @@ -264,7 +264,7 @@ mhd_conn_data_send (struct MHD_Connection *restrict c) } } } - #endif /* mhd_USE_SENDFILE */ +#endif /* mhd_USE_SENDFILE */ else { mhd_assert (0 && "Should be unreachable");