coreutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] maint: avoid sc_preprocessor_indentation failure in factor.c


From: Bernhard Voelker
Subject: [PATCH] maint: avoid sc_preprocessor_indentation failure in factor.c
Date: Sun, 29 Sep 2024 18:37:55 +0200

Prompted by the following 'make syntax-check' failure:
  cppi: src/factor.c: line 175: not properly indented
  cppi: src/factor.c: line 176: not properly indented
  maint.mk: incorrect preprocessor indentation
  make: *** [cfg.mk:750: sc_preprocessor_indentation] Error 1

* src/factor.c: Filter through 'cppi -a'.
---
 src/factor.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/factor.c b/src/factor.c
index cba32d874..3312adbb9 100644
--- a/src/factor.c
+++ b/src/factor.c
@@ -172,8 +172,8 @@ typedef unsigned long int UDItype;

 /* longlong.h uses these macros only in certain system compiler combinations.
    Ensure usage to pacify -Wunused-macros.  */
-#if defined ASSERT || defined UHWtype || defined __GMP_DECLSPEC
-#endif
+# if defined ASSERT || defined UHWtype || defined __GMP_DECLSPEC
+# endif

 # if _ARCH_PPC
 #  define HAVE_HOST_CPU_FAMILY_powerpc 1
--
2.46.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]