gst/gstquark.c: Fix printf format warning.

Original commit message from CVS:
* gst/gstquark.c: (_priv_gst_quarks_initialize):
Fix printf format warning.
This commit is contained in:
Tim-Philipp Müller 2008-10-14 17:10:43 +00:00
parent 075811e654
commit 1be929a4b6
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2008-10-14 Tim-Philipp Müller <tim.muller at collabora co uk>
* gst/gstquark.c: (_priv_gst_quarks_initialize):
Fix printf format warning.
2008-10-14 Sebastian Dröge <slomo@circular-chaos.org>
* plugins/elements/gsttee.c: (gst_tee_handle_buffer):

View file

@ -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]);