From 62344da1e6dff71e59d140adcc5e32047c63820a Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Thu, 26 Jun 2008 21:26:34 +0000 Subject: [PATCH] Fix compile on 64-bit platforms. --- tools/regression/posixshm/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/regression/posixshm/test.c b/tools/regression/posixshm/test.c index 16a56e96bbe..8583a0dbbac 100644 --- a/tools/regression/posixshm/test.c +++ b/tools/regression/posixshm/test.c @@ -115,7 +115,7 @@ run_tests(void) { struct regression_test **testp; - printf("1..%d\n", SET_COUNT(regression_tests_set)); + printf("1..%td\n", SET_COUNT(regression_tests_set)); test_index = 1; SET_FOREACH(testp, regression_tests_set) { test_acknowleged = 0;