summaryrefslogtreecommitdiff
path: root/gst/mve
diff options
context:
space:
mode:
authorMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>2012-01-23 13:58:04 +0100
committerMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>2012-01-23 14:22:12 +0100
commitccee94e30d24cd12e70a8591c327e1702ed92f10 (patch)
treeb44733bbe5004b91ac822800d3b9d2dda311a0d7 /gst/mve
parent6b71ccb552bbebb572bac4a885a29767b286c576 (diff)
downloadgstreamer-plugins-bad-ccee94e30d24cd12e70a8591c327e1702ed92f10.tar.gz
mve: use signed loop variable
... when using it in i >= 0.
Diffstat (limited to 'gst/mve')
-rw-r--r--gst/mve/gstmvemux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/mve/gstmvemux.c b/gst/mve/gstmvemux.c
index 87165f46f..fad163b82 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);