summaryrefslogtreecommitdiffstats
path: root/gst/real
diff options
context:
space:
mode:
Diffstat (limited to 'gst/real')
-rw-r--r--gst/real/gstrealvideodec.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gst/real/gstrealvideodec.c b/gst/real/gstrealvideodec.c
index 5dceccd5..d9b7f4e0 100644
--- a/gst/real/gstrealvideodec.c
+++ b/gst/real/gstrealvideodec.c
@@ -409,8 +409,9 @@ too_many_fragments:
{
gst_buffer_unref (in);
GST_ELEMENT_ERROR (dec, STREAM, DECODE,
- ("Got more fragments (%i) than can be handled (%i).",
- dec->fragment_count, sizeof (dec->fragments)), (NULL));
+ ("Got more fragments (%u) than can be handled (%u)",
+ dec->fragment_count, (guint) G_N_ELEMENTS (dec->fragments)),
+ (NULL));
return GST_FLOW_ERROR;
}