summaryrefslogtreecommitdiff
path: root/tests/tio_str.c
diff options
context:
space:
mode:
authorenge <enge@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2009-03-23 12:23:43 +0000
committerenge <enge@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2009-03-23 12:23:43 +0000
commitb60d2e4533ca1a3934d45239b2209d5d8e389188 (patch)
tree827a4df830088f016d1e674dec658ba41a6751cc /tests/tio_str.c
parent33aa398a2e6078861881bbd488f86cef0948f5e3 (diff)
downloadmpc-b60d2e4533ca1a3934d45239b2209d5d8e389188.tar.gz
correct printing of size_t in 32 bit mode
git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@497 211d60ee-9f03-0410-a15a-8952a2c7a4e4
Diffstat (limited to 'tests/tio_str.c')
-rw-r--r--tests/tio_str.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tio_str.c b/tests/tio_str.c
index 2bf8dc8..caa7338 100644
--- a/tests/tio_str.c
+++ b/tests/tio_str.c
@@ -102,7 +102,7 @@ check_file (const char* file_name)
inex, expected_inex);
if (size != expected_size)
printf (" got size: %lu\nexpected size: %lu\n ",
- size, expected_size);
+ (unsigned long int) size, (unsigned long int) expected_size);
OUT (got);
OUT (expected);