Skip to content

Commit eda775a

Browse files
committed
Fix build break on OSX: Invalid type comparision.
JerryScript-DCO-1.0-Signed-off-by: Sung-Jae Lee [email protected]
1 parent 3703b1b commit eda775a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jerry-core/parser/js/bc/bytecode-data.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -785,7 +785,7 @@ bc_load_bytecode_data (const uint8_t *snapshot_data_p, /**< buffer with instruct
785785
next_to_handle_list_p->next_header_cp = MEM_CP_NULL;
786786
next_to_handle_list_p = bc_header_list_iter_p;
787787

788-
if (next_to_handle_list_p == MEM_CP_NULL)
788+
if (next_to_handle_list_p == NULL)
789789
{
790790
break;
791791
}

0 commit comments

Comments
 (0)