mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-29 13:11: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
|
gboolean
|
||||||
gst_context_is_persistent (const GstContext * context)
|
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;
|
return context->persistent;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue