commit f89621ff44ded2c93228f18b9a56865eda0e3562
parent 35635c6a780f5159b1a11c08988c33ac49927099
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date: Tue, 16 May 2023 18:25:55 +0300
test_postprocessor_md: fixed build in C89 mode
Diffstat:
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/src/microhttpd/test_postprocessor_md.c b/src/microhttpd/test_postprocessor_md.c
@@ -1,7 +1,7 @@
/*
This file is part of libmicrohttpd
Copyright (C) 2020 Christian Grothoff
- Copyright (C) 2020-2022 Evgeny Grin (Karlson2k)
+ Copyright (C) 2020-2023 Evgeny Grin (Karlson2k)
libmicrohttpd is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published
@@ -518,6 +518,7 @@ main (int argc, char *argv[])
if (1)
{
+ unsigned i;
const char *chunks[] = {
"t=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx%2C%2Cxxxxx%2C%2Cx%2Cxxxxxxxx"
"xxxxxxxxxxxx%2C%2Cxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
@@ -680,7 +681,7 @@ main (int argc, char *argv[])
postprocessor->buffer_size = 131076;
postprocessor->state = PP_Init;
postprocessor->skip_rn = RN_Inactive;
- for (unsigned i = 0; i < ARRAY_LENGTH (chunks); ++i)
+ for (i = 0; i < ARRAY_LENGTH (chunks); ++i)
{
const char *chunk = chunks[i];
if (MHD_YES != MHD_post_process (postprocessor, chunk, strlen (chunk) ))
@@ -693,6 +694,7 @@ main (int argc, char *argv[])
}
if (1)
{
+ unsigned i;
const char *chunks[] = {
"XXXXXXXXXXXX=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&XXXXXX=&XXXXXXXXXXXXXX=X"
@@ -716,7 +718,7 @@ main (int argc, char *argv[])
postprocessor->buffer_size = 131076;
postprocessor->state = PP_Init;
postprocessor->skip_rn = RN_Inactive;
- for (unsigned i = 0; i < ARRAY_LENGTH (chunks); ++i)
+ for (i = 0; i < ARRAY_LENGTH (chunks); ++i)
{
const char *chunk = chunks[i];
if (MHD_YES != MHD_post_process (postprocessor, chunk, strlen (chunk) ))