From: Jim Meyering Date: Sun, 18 Nov 2012 17:45:14 +0000 (-0800) Subject: maint: correct indentation of W_TYPE_SIZE-defining cpp directives X-Git-Tag: v8.21~90 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e2e3f1ad07c509d505b5fdbc02130343af349c1e;p=thirdparty%2Fcoreutils.git maint: correct indentation of W_TYPE_SIZE-defining cpp directives * src/factor.c: Indent cpp directives to reflect their nesting. --- diff --git a/src/factor.c b/src/factor.c index 40cce1f970..84392621f3 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