libmicrohttpd2

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

commit ff222afa4c431152a77a1327dfb7d066a669f955
parent a8de1b1bc80da19bd738d07e8b692c6ae68eedbb
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
Date:   Sat,  3 May 2025 17:54:12 +0200

Removed trailing space

Diffstat:
Msrc/include/options-generator.c | 2+-
Msrc/mhd2/daemon_set_options.c | 2+-
Msrc/mhd2/response_set_options.c | 2+-
3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/include/options-generator.c b/src/include/options-generator.c @@ -1126,7 +1126,7 @@ TOP: &dump_option_set_switch); fprintf (f, " case MHD_%c_O_SENTINEL:\n" - " default: /* for -Wswitch-default -Wswitch-enum */ \n" + " default: /* for -Wswitch-default -Wswitch-enum */\n" " res = MHD_SC_OPTION_UNKNOWN;\n" " i = options_max_num - 1;\n" " break;\n", diff --git a/src/mhd2/daemon_set_options.c b/src/mhd2/daemon_set_options.c @@ -256,7 +256,7 @@ MHD_daemon_set_options ( settings->auth_digest_def_max_nc = option->val.auth_digest_def_max_nc; continue; case MHD_D_O_SENTINEL: - default: /* for -Wswitch-default -Wswitch-enum */ + default: /* for -Wswitch-default -Wswitch-enum */ res = MHD_SC_OPTION_UNKNOWN; i = options_max_num - 1; break; diff --git a/src/mhd2/response_set_options.c b/src/mhd2/response_set_options.c @@ -96,7 +96,7 @@ MHD_response_set_options ( settings->termination_callback.v_ended_cb_cls = option->val.termination_callback.v_ended_cb_cls; continue; case MHD_R_O_SENTINEL: - default: /* for -Wswitch-default -Wswitch-enum */ + default: /* for -Wswitch-default -Wswitch-enum */ res = MHD_SC_OPTION_UNKNOWN; i = options_max_num - 1; break;