From c7164b1927e3fe7cdba70ee4687e1a590a81043b Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Tue, 11 Jun 2024 22:42:26 +0300 Subject: [PATCH] xz: Fix white space --- src/xz/list.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/xz/list.c b/src/xz/list.c index 10b8f7b0..e4a64668 100644 --- a/src/xz/list.c +++ b/src/xz/list.c @@ -1179,8 +1179,8 @@ print_totals_basic(void) checks); #if defined(__sun) && (defined(__GNUC__) || defined(__clang__)) -# pragma GCC diagnostic push -# pragma GCC diagnostic ignored "-Wformat-nonliteral" +# pragma GCC diagnostic push +# pragma GCC diagnostic ignored "-Wformat-nonliteral" #endif // Since we print totals only when there are at least two files, // the English message will always use "%s files". But some other @@ -1194,7 +1194,7 @@ print_totals_basic(void) : (totals.files % 1000000) + 1000000), uint64_to_str(totals.files, 0)); #if defined(__sun) && (defined(__GNUC__) || defined(__clang__)) -# pragma GCC diagnostic pop +# pragma GCC diagnostic pop #endif return;