From bd193201b2fff69c890092037768ebb9647a0f2e Mon Sep 17 00:00:00 2001 From: "Markus F.X.J. Oberhumer" Date: Thu, 3 Dec 2020 02:14:47 +0100 Subject: [PATCH] Avoid a clang-11 warning. --- src/p_mach.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_mach.cpp b/src/p_mach.cpp index 9a9f5fbd..4d3cae06 100644 --- a/src/p_mach.cpp +++ b/src/p_mach.cpp @@ -465,7 +465,7 @@ PackMachBase::compare_segment_command(void const *const aa, void const *const if (a->vmsize) return -1; // 'a' is first if (b->vmsize) return 1; // 'a' is last // What could remain? - return 0; + return 0; } #undef PAGE_MASK