summaryrefslogtreecommitdiff
path: root/tests/tio_str.c
diff options
context:
space:
mode:
authorAndreas Enge <andreas.enge@inria.fr>2009-03-23 12:23:43 +0000
committerAndreas Enge <andreas.enge@inria.fr>2009-03-23 12:23:43 +0000
commit9fce2ca4ae0e483589c5c8d68efe7d3e8d145964 (patch)
tree827a4df830088f016d1e674dec658ba41a6751cc /tests/tio_str.c
parenta80f1f0e7b72b24ed38d21bb94e50ed4351d9544 (diff)
downloadmpc-git-9fce2ca4ae0e483589c5c8d68efe7d3e8d145964.tar.gz
correct printing of size_t in 32 bit mode
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/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);