diff --git a/ChangeLog b/ChangeLog index 77332c3e34..4e24455d35 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-10-14 Tim-Philipp Müller + + * gst/gstquark.c: (_priv_gst_quarks_initialize): + Fix printf format warning. + 2008-10-14 Sebastian Dröge * plugins/elements/gsttee.c: (gst_tee_handle_buffer): diff --git a/gst/gstquark.c b/gst/gstquark.c index 05ee10caa8..0b40364805 100644 --- a/gst/gstquark.c +++ b/gst/gstquark.c @@ -48,8 +48,8 @@ _priv_gst_quarks_initialize (void) gint i; if (G_N_ELEMENTS (_quark_strings) != GST_QUARK_MAX) - g_warning ("the quark table is not consistent! %ld != %d", - G_N_ELEMENTS (_quark_strings), GST_QUARK_MAX); + g_warning ("the quark table is not consistent! %d != %d", + (int) G_N_ELEMENTS (_quark_strings), GST_QUARK_MAX); for (i = 0; i < GST_QUARK_MAX; i++) { _priv_gst_quark_table[i] = g_quark_from_static_string (_quark_strings[i]);