From 0260a8613bd992b596dfa0f2b69ecfbba33c9bca Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Fri, 30 Jan 2009 00:31:15 +0100 Subject: Fix signed/unsigned comparison issue within GStreamer plugin --- audio/gstsbcutil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'audio/gstsbcutil.c') diff --git a/audio/gstsbcutil.c b/audio/gstsbcutil.c index 6f95c244..b102da3a 100644 --- a/audio/gstsbcutil.c +++ b/audio/gstsbcutil.c @@ -91,7 +91,7 @@ const gchar *gst_sbc_get_allocation_from_list(const GValue *value) */ const gchar *gst_sbc_get_mode_from_list(const GValue *list, gint channels) { - int i; + unsigned int i; const GValue *value; const gchar *aux; gboolean joint, stereo, dual, mono; -- cgit