From: Art Cancro Date: Wed, 23 Dec 2020 23:07:14 +0000 (-0500) Subject: fixed error: 'for' loop initial declarations are only allowed in C99 or C11 mode X-Git-Tag: v939~188 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=4f81523e181d1a3e57615cf411d48abe2ab45d1c fixed error: 'for' loop initial declarations are only allowed in C99 or C11 mode --- diff --git a/citadel/modules/inboxrules/serv_inboxrules.c b/citadel/modules/inboxrules/serv_inboxrules.c index 4979e5715..2852e00bf 100644 --- a/citadel/modules/inboxrules/serv_inboxrules.c +++ b/citadel/modules/inboxrules/serv_inboxrules.c @@ -218,7 +218,8 @@ struct inboxrules *deserialize_inbox_rules(char *serialized_rules) { // We have a rule , now parse it char rtoken[SIZ]; int nt = num_tokens(decoded_rule, '|'); - for (int t=0; t