diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2009-03-26 20:28:30 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2009-03-26 20:28:30 +0100 |
commit | f510be57cd96c2814ee319bbd9c562709f1e49ba (patch) | |
tree | 790eaea1f4f268e5e2e3e0e89459d0b1f4ced709 /gst/mxf/mxfmux.c | |
parent | 2c51bbdfadcb4f80e8614f29e3728866de741a86 (diff) | |
download | gst-plugins-bad-f510be57cd96c2814ee319bbd9c562709f1e49ba.tar.gz gst-plugins-bad-f510be57cd96c2814ee319bbd9c562709f1e49ba.tar.bz2 gst-plugins-bad-f510be57cd96c2814ee319bbd9c562709f1e49ba.zip |
mxf: Fix compilation and compiler errors with GLib < 2.16.0
Diffstat (limited to 'gst/mxf/mxfmux.c')
-rw-r--r-- | gst/mxf/mxfmux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/mxf/mxfmux.c b/gst/mxf/mxfmux.c index d7658dbb..1ca6584d 100644 --- a/gst/mxf/mxfmux.c +++ b/gst/mxf/mxfmux.c @@ -969,7 +969,7 @@ gst_mxf_mux_write_header_metadata (GstMXFMux * mux) } #if !GLIB_CHECK_VERSION (2, 16, 0) - g_list_free (value); + g_list_free (values); #endif buffers = g_list_reverse (buffers); |