nasm.c: Tabs to spaces in process_response_file

Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
Cyrill Gorcunov 2013-02-15 12:14:06 +04:00
parent 1476319ced
commit f196451d66

6
nasm.c
View file

@ -1075,11 +1075,11 @@ static void process_response_file(const char *file)
char str[2048];
FILE *f = fopen(file, "r");
if (!f) {
perror(file);
exit(-1);
perror(file);
exit(-1);
}
while (fgets(str, sizeof str, f)) {
process_args(str);
process_args(str);
}
fclose(f);
}