diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2015-02-12 14:03:03 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2015-02-12 14:03:03 +0200 |
commit | 5141641dc8bb4132bdb608934630e7242a910256 (patch) | |
tree | 865b03d80c1d1de34810b490c12ec6fda1fa6c40 | |
parent | 1937d09a958b65d53f1fb8913b343dc65c4bfe38 (diff) |
pad: Return NULL instead of FALSE for pointers
-rw-r--r-- | gst/gstpad.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/gstpad.c b/gst/gstpad.c index 7083aca7f..f6cdf73b8 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; } } |