1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-05-05 14:25:16 +02:00

(test_generic): Fix "unused variable" warning.

(Logical change 1.266)
This commit is contained in:
mostang.com!davidm 2004-09-09 13:06:01 +00:00
parent cb4fda9750
commit 34be77c7b2

View file

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