gst-libs/gst/rtsp/gstrtspmessage.c: Fix compiler warning.

Original commit message from CVS:
* gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_unset):
Fix compiler warning.
This commit is contained in:
Wim Taymans 2008-02-07 12:17:49 +00:00
parent ed373d3072
commit d4bcdb7340
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
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>

View 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);