From: Jean-Marc Lasgouttes Date: Sat, 1 Nov 2014 15:02:34 +0000 (+0100) Subject: Fix wrong test: boolean variable is never negative X-Git-Tag: 2.2.0alpha1~1580 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=c559f85ccb3040af4117daa139a7a2c9c1f12b8a;p=features.git Fix wrong test: boolean variable is never negative This has been spotted by clang++. --- diff --git a/src/Server.cpp b/src/Server.cpp index 1de758a5f4..b7fa35ee13 100644 --- a/src/Server.cpp +++ b/src/Server.cpp @@ -878,7 +878,7 @@ void LyXComm::endPipe(int & fd, string const & filename, bool write) << '\n' << strerror(errno) << endl; } - if (FileName(filename).removeFile() < 0) { + if (!FileName(filename).removeFile()) { lyxerr << "LyXComm: Could not remove pipe " << filename << '\n' << strerror(errno) << endl; }