mflag: add: skip leading whitespace

pull/12/head
Leah Neukirchen 7 years ago
parent e31cd95dc2
commit c561aca4c9

@ -34,6 +34,8 @@ add(char *file)
}
if (!args)
exit(-1);
while (*file == ' ' || *file == '\t')
file++;
args[idx] = strdup(file);
idx++;
}

Loading…
Cancel
Save