Skip to content

Commit

Permalink
preproc.c: fix assignment incorrectly coded as ==
Browse files Browse the repository at this point in the history
Assignment is = not ==.

Signed-off-by: H. Peter Anvin <[email protected]>
  • Loading branch information
H. Peter Anvin committed Jun 16, 2016
1 parent fd2b1a6 commit f500d83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion preproc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit f500d83

Please sign in to comment.