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) {
nasm_free(*found_path);
*found_path == NULL;
*found_path = NULL;
}
if (!ip) {