mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-25 08:37:38 +01:00
(test_generic): Fix "unused variable" warning.
(Logical change 1.266)
This commit is contained in:
parent
cb4fda9750
commit
34be77c7b2
1 changed files with 3 additions and 3 deletions
|
@ -53,20 +53,20 @@ static void *funcs[] =
|
|||
int
|
||||
test_generic (void)
|
||||
{
|
||||
unw_cursor_t c;
|
||||
|
||||
if (verbose)
|
||||
printf (__FILE__": funcs[0]=%p\n", funcs[0]);
|
||||
|
||||
#ifndef UNW_REMOTE_ONLY
|
||||
{
|
||||
unw_context_t uc;
|
||||
unw_cursor_t c;
|
||||
|
||||
unw_getcontext (&uc);
|
||||
unw_init_local (&c, &uc);
|
||||
unw_init_remote (&c, unw_local_addr_space, &uc);
|
||||
|
||||
return unw_step (&c);
|
||||
}
|
||||
return unw_step (&c);
|
||||
#else
|
||||
return 0;
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue