gst-libs/gst/rtsp/gstrtspmessage.c: Fix compiler warning.
authorWim Taymans <wim.taymans@gmail.com>
Thu, 7 Feb 2008 12:17:49 +0000 (12:17 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Thu, 7 Feb 2008 12:17:49 +0000 (12:17 +0000)
Original commit message from CVS:
* gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_unset):
Fix compiler warning.

ChangeLog
gst-libs/gst/rtsp/gstrtspmessage.c

index b24e7b3..dee82ba 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2008-02-07  Wim Taymans  <wim.taymans@collabora.co.uk>
 
+       * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_unset):
+       Fix compiler warning.
+
+2008-02-07  Wim Taymans  <wim.taymans@collabora.co.uk>
+
        Patch by: Peter Kjellerstedt  <pkj at axis com>
 
        * gst-libs/gst/sdp/gstsdpmessage.c: (is_multicast_address):
index adf0d39..c7017e9 100644 (file)
@@ -452,7 +452,7 @@ gst_rtsp_message_unset (GstRTSPMessage * msg)
   }
 
   if (msg->hdr_fields != NULL) {
-    gint i;
+    guint i;
 
     for (i = 0; i < msg->hdr_fields->len; i++) {
       RTSPKeyValue *keyval = &g_array_index (msg->hdr_fields, RTSPKeyValue, i);