diff options
author | Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com> | 2016-12-14 13:29:08 -0800 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2016-12-22 14:44:39 +0200 |
commit | 3caee4b362241b199485e71fd4089b18d2e7fd0c (patch) | |
tree | f01728b623e33bf9d4fec631b47d59e928186451 | |
parent | 8a9d25ded3c81b9b0c4d1bc43877e9d6c93f0e0d (diff) |
Fix broken build due to syntax error
Problem was introduced by 8716c23e2b0553db2982eb84c437f493c974385e
-rw-r--r-- | omx/gstomx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/omx/gstomx.c b/omx/gstomx.c index 3ac1ebb..8db20a8 100644 --- a/omx/gstomx.c +++ b/omx/gstomx.c @@ -1343,7 +1343,7 @@ retry: GST_DEBUG_OBJECT (comp->parent, "Component %s port %d signalled EOS", comp->name, port->index); ret = GST_OMX_ACQUIRE_BUFFER_EOS; - port->eos = FALSE + port->eos = FALSE; goto done; } } |