From 94f198b28835ff21668abb53bf146cabf209fbb7 Mon Sep 17 00:00:00 2001 From: "hp.com!davidm" Date: Mon, 24 Nov 2003 21:37:22 +0000 Subject: [PATCH] (handler): Adjust printf format to avoid compiler warning. (Logical change 1.123) --- tests/Gtest-concurrent.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Gtest-concurrent.c b/tests/Gtest-concurrent.c index 0a8b54d9..3378decd 100644 --- a/tests/Gtest-concurrent.c +++ b/tests/Gtest-concurrent.c @@ -58,7 +58,7 @@ handler (int sig) { unw_get_reg(&c, UNW_REG_IP, &ip); if (verbose) - printf ("%p: IP=%lx\n", pthread_self (), (unsigned long) ip); + printf ("%lx: IP=%lx\n", (long) pthread_self (), (unsigned long) ip); } while ((ret = unw_step(&c)) > 0);