diff options
author | Jim Meyering <jim@meyering.net> | 2012-11-18 09:45:14 -0800 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2012-11-18 10:15:47 -0800 |
commit | e2e3f1ad07c509d505b5fdbc02130343af349c1e (patch) | |
tree | 68168c862e8bf9557af4c12fd8008a56adc4a348 /src/factor.c | |
parent | 47046dac3903c9f16e5f58d8d31346efd3215135 (diff) | |
download | coreutils-e2e3f1ad07c509d505b5fdbc02130343af349c1e.tar.gz |
maint: correct indentation of W_TYPE_SIZE-defining cpp directives
* src/factor.c: Indent cpp directives to reflect their nesting.
Diffstat (limited to 'src/factor.c')
-rw-r--r-- | src/factor.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/factor.c b/src/factor.c index 40cce1f97..84392621f 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 |