From 5869c64887d36cce64720f23892e5890ef099929 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 30 Jun 2005 23:51:16 +0000 Subject: type cast output to prevent build warnings --- test/signal/signal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/signal/signal.c b/test/signal/signal.c index 8272de3dc..abe211109 100644 --- a/test/signal/signal.c +++ b/test/signal/signal.c @@ -95,7 +95,7 @@ int main(void) printf("No errors.\n"); } else { status = EXIT_FAILURE; - printf("%d errors.\n", errors); + printf("%lu errors.\n", (unsigned long)errors); } exit(status); } -- cgit v1.2.3