summaryrefslogtreecommitdiff
path: root/src/extent-scan.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2011-05-25 12:31:15 +0200
committerJim Meyering <meyering@redhat.com>2011-05-26 22:10:46 +0200
commitd7e23652039b5e145ab0d809a7de75ebb3facc24 (patch)
tree1dd1b54432ce6e955a0a05940b75a6dacca88fb8 /src/extent-scan.c
parent3f98fe3155b8f19431411370198102f30f00b45e (diff)
downloadcoreutils-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/extent-scan.c')
-rw-r--r--src/extent-scan.c4
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;