mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
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:
parent
ed373d3072
commit
d4bcdb7340
2 changed files with 6 additions and 1 deletions
|
@ -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>
|
2008-02-07 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||||
|
|
||||||
Patch by: Peter Kjellerstedt <pkj at axis com>
|
Patch by: Peter Kjellerstedt <pkj at axis com>
|
||||||
|
|
|
@ -452,7 +452,7 @@ gst_rtsp_message_unset (GstRTSPMessage * msg)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (msg->hdr_fields != NULL) {
|
if (msg->hdr_fields != NULL) {
|
||||||
gint i;
|
guint i;
|
||||||
|
|
||||||
for (i = 0; i < msg->hdr_fields->len; i++) {
|
for (i = 0; i < msg->hdr_fields->len; i++) {
|
||||||
RTSPKeyValue *keyval = &g_array_index (msg->hdr_fields, RTSPKeyValue, i);
|
RTSPKeyValue *keyval = &g_array_index (msg->hdr_fields, RTSPKeyValue, i);
|
||||||
|
|
Loading…
Reference in a new issue