mirror of
https://github.com/netwide-assembler/nasm
synced 2026-08-26 16:23:04 -04:00
nasm.c: Tabs to spaces in process_response_file
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
parent
1476319ced
commit
f196451d66
1 changed files with 3 additions and 3 deletions
6
nasm.c
6
nasm.c
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue