tweaks: replace a misplaced tab with a space

master
David Lawrence Ramsey 2017-07-27 02:23:47 -05:00 committed by Benno Schulenberg
parent beae2da10d
commit e2d3ee2364
1 changed files with 1 additions and 1 deletions

View File

@ -3400,7 +3400,7 @@ void do_formatter(void)
formatargs[0] = strtok(openfile->syntax->formatter, " "); formatargs[0] = strtok(openfile->syntax->formatter, " ");
while ((ptr = strtok(NULL, " ")) != NULL) { while ((ptr = strtok(NULL, " ")) != NULL) {
arglen++; arglen++;
formatargs = (char **)nrealloc(formatargs, arglen * sizeof(char *)); formatargs = (char **)nrealloc(formatargs, arglen * sizeof(char *));
formatargs[arglen - 3] = ptr; formatargs[arglen - 3] = ptr;
} }
formatargs[arglen - 1] = NULL; formatargs[arglen - 1] = NULL;