GENERATED: C89/C99

This commit is contained in:
Evgeny Grin (Karlson2k)
2024-06-08 14:38:17 +02:00
parent 9821db8d96
commit af6b59571b
2 changed files with 6 additions and 2 deletions
+3 -1
View File
@@ -22,7 +22,9 @@ MHD_daemon_set_options (struct MHD_Daemon *daemon,
const struct MHD_DaemonOptionAndValue *options,
size_t options_max_num)
{
for (size_t i=0;i<options_max_num;i++)
size_t i;
for (i=0;i<options_max_num;i++)
{
switch (options[i].opt) {
case MHD_D_OPTION_WORK_MODE:
+3 -1
View File
@@ -21,7 +21,9 @@ MHD_response_set_options (struct MHD_Response *response,
const struct MHD_ResponseOptionAndValue *options,
size_t options_max_num)
{
for (size_t i=0;i<options_max_num;i++)
size_t i;
for (i=0;i<options_max_num;i++)
{
switch (options[i].opt) {
case MHD_R_OPTION_REUSABLE: