From e2e3f1ad07c509d505b5fdbc02130343af349c1e Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 18 Nov 2012 09:45:14 -0800 Subject: [PATCH] maint: correct indentation of W_TYPE_SIZE-defining cpp directives * src/factor.c: Indent cpp directives to reflect their nesting. --- src/factor.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/factor.c b/src/factor.c index 40cce1f..8439262 100644 --- a/src/factor.c +++ b/src/factor.c @@ -126,13 +126,13 @@ /* Make definitions for longlong.h to make it do what it can do for us */ /* bitcount for uintmax_t */ -#if UINTMAX_MAX == UINT32_MAX -# define W_TYPE_SIZE 32 -#elif UINTMAX_MAX == UINT64_MAX -# define W_TYPE_SIZE 64 -#elif UINTMAX_MAX == UINT128_MAX -# define W_TYPE_SIZE 128 -#endif +# if UINTMAX_MAX == UINT32_MAX +# define W_TYPE_SIZE 32 +# elif UINTMAX_MAX == UINT64_MAX +# define W_TYPE_SIZE 64 +# elif UINTMAX_MAX == UINT128_MAX +# define W_TYPE_SIZE 128 +# endif # define UWtype uintmax_t # define UHWtype unsigned long int -- 2.7.4