From 5141641dc8bb4132bdb608934630e7242a910256 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 12 Feb 2015 14:03:03 +0200 Subject: [PATCH] pad: Return NULL instead of FALSE for pointers --- gst/gstpad.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gstpad.c b/gst/gstpad.c index 7083aca7fc..f6cdf73b80 100644 --- a/gst/gstpad.c +++ b/gst/gstpad.c @@ -2770,7 +2770,7 @@ no_parent: { GST_DEBUG_OBJECT (pad, "no parent"); GST_OBJECT_UNLOCK (pad); - return FALSE; + return NULL; } }