diff options
author | Jim Meyering <meyering@redhat.com> | 2011-05-25 12:31:15 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2011-05-26 22:10:46 +0200 |
commit | d7e23652039b5e145ab0d809a7de75ebb3facc24 (patch) | |
tree | 1dd1b54432ce6e955a0a05940b75a6dacca88fb8 /src | |
parent | 3f98fe3155b8f19431411370198102f30f00b45e (diff) | |
download | coreutils-d7e23652039b5e145ab0d809a7de75ebb3facc24.tar.xz |
maint: enforce cpp indentation policy
* cfg.mk (sc_preprocessor_indentation): New test, from libvirt.
Exempt 3 files from new cppi test.
* gl/lib/randread.c: Adjust cpp indentation to comply.
* src/extent-scan.c (extent_need_sync): Likewise.
Diffstat (limited to 'src')
-rw-r--r-- | src/extent-scan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/extent-scan.c b/src/extent-scan.c index 596e7f791..48dd564e5 100644 --- a/src/extent-scan.c +++ b/src/extent-scan.c @@ -50,7 +50,7 @@ extent_need_sync (void) struct utsname name; need_sync = 0; /* No workaround by default. */ -#ifdef __linux__ +# ifdef __linux__ if (uname (&name) != -1 && STRNCMP_LIT (name.release, "2.6.") == 0) { unsigned long val; @@ -60,7 +60,7 @@ extent_need_sync (void) need_sync = 1; } } -#endif +# endif } return need_sync; |