SummaryRefsLogTreeCommitDiffStats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mcron.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mcron.c b/src/mcron.c
index c0b151a..adb91aa 100644
--- a/src/mcron.c
+++ b/src/mcron.c
@@ -110,8 +110,9 @@ parse_opt (int key, char *arg, struct argp_state *state)
SCM lst = SCM_EOL;
int filec = state->argc - state->next;
char **filev = state->argv + state->next;
+ int i;
- for (int i = filec - 1; i >= 0; i--)
+ for (i = filec - 1; i >= 0; i--)
lst = scm_cons (scm_from_locale_string (filev[i]), lst);
assq_symbol_set_x (config, "files", lst);