Cast printf() argument to avoid compiler warning.

(Logical change 1.130)
diff --git a/tests/Gtest-resume-sig.c b/tests/Gtest-resume-sig.c
index c6bda67..fb28ac1 100644
--- a/tests/Gtest-resume-sig.c
+++ b/tests/Gtest-resume-sig.c
@@ -86,7 +86,8 @@
       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)