diff options
author | Slávek Banko <[email protected]> | 2016-09-03 16:50:48 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2016-09-03 16:50:59 +0200 |
commit | 52553175c0f6b235a203a29aec629708e94679f8 (patch) | |
tree | 5dc9aaa33e64b4a338dce383806dddc262a2bfa1 /ksvg | |
parent | aeba5c7132d9ad6a552676571fb21353972f7db4 (diff) | |
download | tdegraphics-52553175c0f6b235a203a29aec629708e94679f8.tar.gz tdegraphics-52553175c0f6b235a203a29aec629708e94679f8.zip |
Fix FTBFS with GCC6
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit f21cac2973811d8a29010277df24126cede2d7ea)
Diffstat (limited to 'ksvg')
-rw-r--r-- | ksvg/impl/SVGAElementImpl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ksvg/impl/SVGAElementImpl.cc b/ksvg/impl/SVGAElementImpl.cc index 153ff5ff..db5342b2 100644 --- a/ksvg/impl/SVGAElementImpl.cc +++ b/ksvg/impl/SVGAElementImpl.cc @@ -111,7 +111,7 @@ SVGAElementImpl *SVGAElementImpl::getLink(SVGElementImpl *sourceElem) } } - return false; + return 0; } // vim:ts=4:noet |