mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 19:21:06 +00:00
gstcontext: Fix return values some more
Return value is a boolean not a pointer
This commit is contained in:
parent
291991dac2
commit
c4539db3c1
1 changed files with 1 additions and 1 deletions
|
@ -266,7 +266,7 @@ gst_context_writable_structure (GstContext * context)
|
|||
gboolean
|
||||
gst_context_is_persistent (const GstContext * context)
|
||||
{
|
||||
g_return_val_if_fail (GST_IS_CONTEXT (context), NULL);
|
||||
g_return_val_if_fail (GST_IS_CONTEXT (context), FALSE);
|
||||
|
||||
return context->persistent;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue