diff options
Diffstat (limited to 'target-sh4/op_helper.c')
-rw-r--r-- | target-sh4/op_helper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target-sh4/op_helper.c b/target-sh4/op_helper.c index 6dc8503a03..529df0ca9e 100644 --- a/target-sh4/op_helper.c +++ b/target-sh4/op_helper.c @@ -145,7 +145,7 @@ void helper_discard_movcal_backup(void) memory_content *next = current->next; free (current); env->movcal_backup = current = next; - if (current == 0) + if (current == NULL) env->movcal_backup_tail = &(env->movcal_backup); } } @@ -161,7 +161,7 @@ void helper_ocbi(uint32_t address) memory_content *next = (*current)->next; stl(a, (*current)->value); - if (next == 0) + if (next == NULL) { env->movcal_backup_tail = current; } |