mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-08 02:18:11 +01:00
(unw_get_save_loc): Fix double negation.
(Logical change 1.105)
This commit is contained in:
parent
9bd061eddb
commit
bcbdc591be
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ unw_get_save_loc (unw_cursor_t *cursor, int reg, unw_save_loc_t *sloc)
|
|||
|
||||
memset (sloc, 0, sizeof (sloc));
|
||||
|
||||
if (!IA64_IS_NULL_LOC (loc))
|
||||
if (IA64_IS_NULL_LOC (loc))
|
||||
{
|
||||
sloc->type = UNW_SLT_NONE;
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue