From: Joel Rosdahl Date: Fri, 8 Apr 2022 10:59:40 +0000 (+0200) Subject: fix: Fix code restructuring mistake in 5a55014f X-Git-Tag: v4.6.1~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a9b30fd3b9cf67b1c937579478f30c6e6d4a4325;p=thirdparty%2Fccache.git fix: Fix code restructuring mistake in 5a55014f --- diff --git a/src/ccache.cpp b/src/ccache.cpp index bf6698daf..175160e00 100644 --- a/src/ccache.cpp +++ b/src/ccache.cpp @@ -590,8 +590,8 @@ process_preprocessed_file(Context& ctx, Hash& hash, const std::string& path) "bin directive in source code"); return nonstd::make_unexpected( Failure(Statistic::unsupported_code_directive)); - } else if (strncmp(q, "___________", 10) - && (q == data.data() || q[-1] == '\n') == 0) { + } else if (strncmp(q, "___________", 10) == 0 + && (q == data.data() || q[-1] == '\n')) { // Unfortunately the distcc-pump wrapper outputs standard output lines: // __________Using distcc-pump from /usr/bin // __________Using # distcc servers in pump mode