summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2002-06-11 21:04:50 +0000
committerOwen Taylor <otaylor@src.gnome.org>2002-06-11 21:04:50 +0000
commit36adc08bfd163fcd96b9a91d8dc87295010df114 (patch)
tree97c3711721e93c46c329af407d2b9e5d4d76b462 /tests
parentf9ec83b2fadf63f48faabc342d34eacfda38b234 (diff)
downloadglib-36adc08bfd163fcd96b9a91d8dc87295010df114.tar.gz
glib-36adc08bfd163fcd96b9a91d8dc87295010df114.tar.bz2
glib-36adc08bfd163fcd96b9a91d8dc87295010df114.zip
tests/patterntest.c (test_compilation) A couple of 64-bit printf format
Tue Jun 11 17:03:39 2002 Owen Taylor <otaylor@redhat.com> * tests/patterntest.c (test_compilation) * glib/gmem.c (profiler_try_realloc): A couple of 64-bit printf format fix from George Lebl. * glib/gconvert.c (open_converter): Fix gsize/gint mixup for g_iconv() arguments.
Diffstat (limited to 'tests')
-rw-r--r--tests/patterntest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/patterntest.c b/tests/patterntest.c
index 2bb77bd45..f1bc0fce8 100644
--- a/tests/patterntest.c
+++ b/tests/patterntest.c
@@ -105,7 +105,7 @@ test_compilation (gchar *src,
{
g_print ("failed \t(pattern_length: %d, expected %d)\n",
spec->pattern_length,
- strlen (spec->pattern));
+ (gint)strlen (spec->pattern));
return FALSE;
}