diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2007-01-10 19:25:09 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2007-01-10 19:25:09 +0000 |
commit | a18f048fb2e1a781888ea7acceaf76bc3dbb3d5f (patch) | |
tree | 2f7992e378217afb0cf4b5dda815412d6e96840b /plugins | |
parent | ececbda2b2f95f75f208e9afb6ff6d6db81401fa (diff) |
plugins/elements/gstfilesink.c: Include <stdio.h> for fseeko().
Original commit message from CVS:
* plugins/elements/gstfilesink.c:
Include <stdio.h> for fseeko().
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/elements/gstfilesink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/elements/gstfilesink.c b/plugins/elements/gstfilesink.c index 14d4439ab..25b854cad 100644 --- a/plugins/elements/gstfilesink.c +++ b/plugins/elements/gstfilesink.c @@ -35,6 +35,7 @@ #include "../../gst/gst-i18n-lib.h" #include <gst/gst.h> +#include <stdio.h> /* for fseeko() */ #include <errno.h> #include "gstfilesink.h" #include <string.h> @@ -44,7 +45,6 @@ #include <unistd.h> #endif - static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink", GST_PAD_SINK, GST_PAD_ALWAYS, |