mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2025-02-02 12:52:53 +01:00
(unw_is_signal_frame): Add parens to avoid compiler warnings.
(Logical change 1.130)
This commit is contained in:
parent
cbe3ca13f5
commit
fa7a796b37
1 changed files with 2 additions and 2 deletions
|
@ -53,8 +53,8 @@ unw_is_signal_frame (unw_cursor_t *cursor)
|
|||
if ((ret = (*a->access_mem) (c->as, c->eip, &w0, 0, c->as_arg)) < 0
|
||||
|| (ret = (*a->access_mem) (c->as, c->eip + 4, &w1, 0, c->as_arg)) < 0)
|
||||
return ret;
|
||||
return (w0 == 0x0077b858) && (w1 == 0x80cd0000)
|
||||
|| (w0 == 0x0000adb8) && (w1 == 0x9080cd00);
|
||||
return (w0 == 0x0077b858 && w1 == 0x80cd0000)
|
||||
|| (w0 == 0x0000adb8 && w1 == 0x9080cd00);
|
||||
#else
|
||||
printf ("%s: implement me\n", __FUNCTION__);
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue