mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-17 13:47:37 +01:00
(ia64_find_save_locs): Fix typo: check for -UNW_ESTOPUNWIND.
(Logical change 1.93)
This commit is contained in:
parent
ba15ba3189
commit
0b65016a37
1 changed files with 1 additions and 1 deletions
|
@ -520,7 +520,7 @@ ia64_find_save_locs (struct cursor *c)
|
|||
}
|
||||
if (ret < 0)
|
||||
{
|
||||
if (ret != UNW_ESTOPUNWIND)
|
||||
if (ret != -UNW_ESTOPUNWIND)
|
||||
dprintf ("%s: failed to locate/build unwind script for ip %lx\n",
|
||||
__FUNCTION__, (long) c->ip);
|
||||
goto out;
|
||||
|
|
Loading…
Reference in a new issue