From a9b30fd3b9cf67b1c937579478f30c6e6d4a4325 Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Fri, 8 Apr 2022 12:59:40 +0200 Subject: [PATCH] fix: Fix code restructuring mistake in 5a55014f --- src/ccache.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.47.2