From 01587dda2a8f13fef7e12fd624e6d05da5f9624f Mon Sep 17 00:00:00 2001 From: Jia Tan Date: Tue, 7 Mar 2023 20:02:22 +0800 Subject: [PATCH] xz: Fix -Wunused-label in io_sandbox_enter(). Thanks to Xin Li for recommending the fix. --- src/xz/file_io.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xz/file_io.c b/src/xz/file_io.c index 1a7dac13..bc4f933d 100644 --- a/src/xz/file_io.c +++ b/src/xz/file_io.c @@ -243,9 +243,9 @@ capsicum_error: sandbox_allowed = false; return; } -#endif - +#else error: +#endif message_fatal(_("Failed to enable the sandbox")); } #endif // ENABLE_SANDBOX