From db505e9f114e6a7c705962fa0c917554628f6ea2 Mon Sep 17 00:00:00 2001 From: Christoph Berg Date: Wed, 27 Mar 2024 07:25:50 +0100 Subject: [PATCH] test/test_addpfx.c: Fix declaration of pfxmultab (#428) This was causing test failures on Debian's s390x architecture. --- test/test_addpfx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_addpfx.c b/test/test_addpfx.c index 4c1643d25..535dcc0af 100644 --- a/test/test_addpfx.c +++ b/test/test_addpfx.c @@ -6,7 +6,7 @@ // OBJECT ../src/addpfx.o // OBJECT ../src/bands.o -extern int pfxmultab; +extern bool pfxmultab; int find_worked_pfx(char *prefix);