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:
@@ -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) {
|
||||||
|
Reference in New Issue
Block a user