0
0
mirror of https://github.com/netwide-assembler/nasm.git synced 2025-09-22 10:43:39 -04:00

preproc.c: fix assignment incorrectly coded as ==

Assignment is = not ==.

Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
This commit is contained in:
H. Peter Anvin
2016-06-16 15:28:09 -07:00
parent fd2b1a6be9
commit f500d83ca4

View File

@@ -1543,7 +1543,7 @@ static FILE *inc_fopen(const char *file, StrList **dhead, StrList ***dtail,
if (found_path != NULL && *found_path != NULL) { if (found_path != NULL && *found_path != NULL) {
nasm_free(*found_path); nasm_free(*found_path);
*found_path == NULL; *found_path = NULL;
} }
if (!ip) { if (!ip) {