diff options
author | Alessandro Decina <alessandro.d@gmail.com> | 2016-08-26 22:51:48 +1000 |
---|---|---|
committer | Alessandro Decina <alessandro.d@gmail.com> | 2016-08-26 22:52:41 +1000 |
commit | 8a05102747dd282b3cac1c57f45c87c46e1a2f29 (patch) | |
tree | 7ff25a7e5ae5903aff8929c38de8cac24f62c29c /sys | |
parent | 3b7e0d7de32f0728259d601daa13b9eeec3dd3ce (diff) | |
download | gstreamer-plugins-bad-8a05102747dd282b3cac1c57f45c87c46e1a2f29.tar.gz |
applemedia: fix compiler warning
Diffstat (limited to 'sys')
-rw-r--r-- | sys/applemedia/corevideomemory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/applemedia/corevideomemory.c b/sys/applemedia/corevideomemory.c index ec26eb31b..e8ab72f14 100644 --- a/sys/applemedia/corevideomemory.c +++ b/sys/applemedia/corevideomemory.c @@ -320,7 +320,7 @@ gst_apple_core_video_memory_new (GstMemoryFlags flags, GstMemory * parent, GST_DEBUG ("%p: gpixbuf %p, plane: %" G_GSSIZE_FORMAT ", size %" G_GSIZE_FORMAT, mem, mem->gpixbuf, mem->plane, mem->mem.size); - return (GstMemory *) mem; + return mem; } /** |