From: Owen Taylor Date: Tue, 11 Jun 2002 21:04:50 +0000 (+0000) Subject: tests/patterntest.c (test_compilation) A couple of 64-bit printf format X-Git-Tag: R_2_0_core~74 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=36adc08bfd163fcd96b9a91d8dc87295010df114;p=platform%2Fupstream%2Fglib.git tests/patterntest.c (test_compilation) A couple of 64-bit printf format Tue Jun 11 17:03:39 2002 Owen Taylor * 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. --- diff --git a/ChangeLog b/ChangeLog index 45b6f77..118da5f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +Tue Jun 11 17:03:39 2002 Owen Taylor + + * 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. + 2002-06-03 Matthias Clasen * glib/gwin32.c (g_win32_get_package_installation_directory): diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 45b6f77..118da5f 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,12 @@ +Tue Jun 11 17:03:39 2002 Owen Taylor + + * 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. + 2002-06-03 Matthias Clasen * glib/gwin32.c (g_win32_get_package_installation_directory): diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index 45b6f77..118da5f 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,12 @@ +Tue Jun 11 17:03:39 2002 Owen Taylor + + * 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. + 2002-06-03 Matthias Clasen * glib/gwin32.c (g_win32_get_package_installation_directory): diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 45b6f77..118da5f 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,12 @@ +Tue Jun 11 17:03:39 2002 Owen Taylor + + * 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. + 2002-06-03 Matthias Clasen * glib/gwin32.c (g_win32_get_package_installation_directory): diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 45b6f77..118da5f 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,12 @@ +Tue Jun 11 17:03:39 2002 Owen Taylor + + * 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. + 2002-06-03 Matthias Clasen * glib/gwin32.c (g_win32_get_package_installation_directory): diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 45b6f77..118da5f 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,12 @@ +Tue Jun 11 17:03:39 2002 Owen Taylor + + * 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. + 2002-06-03 Matthias Clasen * glib/gwin32.c (g_win32_get_package_installation_directory): diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 45b6f77..118da5f 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,12 @@ +Tue Jun 11 17:03:39 2002 Owen Taylor + + * 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. + 2002-06-03 Matthias Clasen * glib/gwin32.c (g_win32_get_package_installation_directory): diff --git a/glib/gconvert.c b/glib/gconvert.c index 63c251f..2c8d2b7 100644 --- a/glib/gconvert.c +++ b/glib/gconvert.c @@ -358,9 +358,9 @@ open_converter (const gchar *to_codeset, * NULL for anything but inbuf; work around that. (NULL outbuf * or NULL *outbuf is allowed by Unix98.) */ - gint inbytes_left = 0; + gsize inbytes_left = 0; gchar *outbuf = NULL; - gint outbytes_left = 0; + gsize outbytes_left = 0; cd = bucket->cd; bucket->used = TRUE; diff --git a/glib/gmem.c b/glib/gmem.c index 5ffe06a..5d3a13a 100644 --- a/glib/gmem.c +++ b/glib/gmem.c @@ -541,7 +541,7 @@ profiler_try_realloc (gpointer mem, if (mem && p[0]) /* free count */ { - g_warning ("realloc(%p, %u): memory has been freed %lu times already", p + 2, n_bytes, p[0]); + g_warning ("realloc(%p, %lu): memory has been freed %lu times already", p + 2, (gulong)n_bytes, p[0]); profiler_log (PROFILER_ALLOC | PROFILER_RELOC, n_bytes, FALSE); return NULL; diff --git a/tests/patterntest.c b/tests/patterntest.c index 2bb77bd..f1bc0fc 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; }