1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-30 21:21:45 +02:00

(unw_get_save_loc): Fix double negation.

(Logical change 1.105)
This commit is contained in:
hp.com!davidm 2003-10-11 00:59:02 +00:00
parent 9bd061eddb
commit bcbdc591be

View file

@ -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;