aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/Gtest-resume-sig.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/Gtest-resume-sig.c b/tests/Gtest-resume-sig.c
index c6bda67a..fb28ac12 100644
--- a/tests/Gtest-resume-sig.c
+++ b/tests/Gtest-resume-sig.c
@@ -86,7 +86,8 @@ handler (int sig)
unw_step(&c); /* step to signaller frame (main ()) */
unw_get_reg(&c, UNW_REG_IP, &ip);
if (verbose)
- printf ("resuming at 0x%lx, with SIGUSR2 pending\n", ip);
+ printf ("resuming at 0x%lx, with SIGUSR2 pending\n",
+ (unsigned long) ip);
unw_resume(&c);
}
else if (sig == SIGUSR2)