From 71f897ebf58b1a50fa346182b182273a1d236d78 Mon Sep 17 00:00:00 2001 From: "Markus F.X.J. Oberhumer" Date: Tue, 20 Sep 2016 10:08:32 +0200 Subject: [PATCH] Avoid a -Wsign-compare warning. --- src/filter/ctojr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/filter/ctojr.h b/src/filter/ctojr.h index 1d27c3f1..27bc8084 100644 --- a/src/filter/ctojr.h +++ b/src/filter/ctojr.h @@ -62,7 +62,7 @@ f80_jcc2(Filter const *f) return f80_jmp1(f); } -static int const N_MRU = 32; // does not have to be a power of 2 +#define N_MRU 32 // does not have to be a power of 2 // Adaptively remember recent destinations. static void @@ -340,7 +340,7 @@ static int U(Filter *f) } #endif - +#undef N_MRU #undef F #undef U