mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 23:30:05 +00:00
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:
parent
075811e654
commit
1be929a4b6
2 changed files with 7 additions and 2 deletions
|
@ -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):
|
||||
|
|
|
@ -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]);
|
||||
|
|
Loading…
Reference in a new issue