diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2016-09-03 17:57:54 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2016-09-03 17:57:54 +0200 |
commit | 0b9e390c01029f4f1a8c0263e532fc1c3faf2b7d (patch) | |
tree | 08d92ab43c99c6b557571ab8261588b2968b6c5c /kexi/kexidb/parser/parser_p.cpp | |
parent | a3814fe7ed9a0e00589137b194a4ebbfec75079b (diff) | |
download | koffice-0b9e390c01029f4f1a8c0263e532fc1c3faf2b7d.tar.gz koffice-0b9e390c01029f4f1a8c0263e532fc1c3faf2b7d.zip |
Fix FTBFS with GCC6
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'kexi/kexidb/parser/parser_p.cpp')
-rw-r--r-- | kexi/kexidb/parser/parser_p.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kexi/kexidb/parser/parser_p.cpp b/kexi/kexidb/parser/parser_p.cpp index df4f3323d..7c2232333 100644 --- a/kexi/kexidb/parser/parser_p.cpp +++ b/kexi/kexidb/parser/parser_p.cpp @@ -585,7 +585,7 @@ QuerySchema* buildSelectQuery( if (!options->whereExpr->validate(parseInfo)) { setError(parseInfo.errMsg, parseInfo.errDescr); CLEANUP; - return false; + return 0; } querySchema->setWhereExpression(options->whereExpr); } |