From ccee94e30d24cd12e70a8591c327e1702ed92f10 Mon Sep 17 00:00:00 2001 From: Mark Nauwelaerts Date: Mon, 23 Jan 2012 13:58:04 +0100 Subject: [PATCH] mve: use signed loop variable ... when using it in i >= 0. --- gst/mve/gstmvemux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/mve/gstmvemux.c b/gst/mve/gstmvemux.c index 87165f46fd..fad163b82e 100644 --- a/gst/mve/gstmvemux.c +++ b/gst/mve/gstmvemux.c @@ -337,7 +337,7 @@ static void gst_mve_mux_palette_analyze (GstMveMux * mvemux, const GstBuffer * pal, guint16 * first, guint16 * last) { - guint i; + gint i; guint32 *col1; col1 = (guint32 *) GST_BUFFER_DATA (pal);