libmicrohttpd2

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

commit a16d1b948d24f84b63d858cbd79c6acb652d1a7b
parent 49323c9b0d8af1dfb67aea58b45481b942f880af
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
Date:   Tue, 23 Dec 2025 20:04:22 +0100

mhd_enum_to_str.c: added missing "break;" at the end of the "switch()"

Diffstat:
Msrc/mhd2/mhd_enum_to_str.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/mhd2/mhd_enum_to_str.c b/src/mhd2/mhd_enum_to_str.c @@ -175,6 +175,7 @@ MHD_http_method_to_string (enum MHD_HTTP_Method method) break; case MHD_HTTP_METHOD_OTHER: /* Handled as unknown value */ default: + break; } return NULL;