diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2016-09-03 17:14:02 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2016-09-03 17:14:12 +0200 |
commit | fd85e292227106005707202a5bebeaa8cba987dc (patch) | |
tree | 118f8fb0aaf26d4ab446da73d33b4b4cdcaa41b5 /tdecachegrind | |
parent | 11793772f64750d8230b6913f682c95114ae7075 (diff) | |
download | tdesdk-fd85e292227106005707202a5bebeaa8cba987dc.tar.gz tdesdk-fd85e292227106005707202a5bebeaa8cba987dc.zip |
Fix FTBFS with GCC6
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 6dcbd0e68452bb64057e97a7c648478f2511b3f2)
Diffstat (limited to 'tdecachegrind')
-rw-r--r-- | tdecachegrind/tdecachegrind/stackbrowser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdecachegrind/tdecachegrind/stackbrowser.cpp b/tdecachegrind/tdecachegrind/stackbrowser.cpp index 2257e586..2c04a024 100644 --- a/tdecachegrind/tdecachegrind/stackbrowser.cpp +++ b/tdecachegrind/tdecachegrind/stackbrowser.cpp @@ -234,7 +234,7 @@ Stack* Stack::split(TraceFunction* f) // cycles are listed on there own if (f->cycle() == f) return 0; - if (_top->cycle() == _top) return false; + if (_top->cycle() == _top) return 0; for (c=calls.first();c;c=calls.next()) { TraceCallList l = c->called()->callings(); |