From 1e1b7886de107b7fc5cade05a954c25136ebf6cc Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Fri, 18 May 2018 18:26:18 -0400 Subject: fix indentation --- lib/extent-map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/extent-map.c b/lib/extent-map.c index 42071c6..d841077 100644 --- a/lib/extent-map.c +++ b/lib/extent-map.c @@ -9,7 +9,7 @@ #include "extent-map.h" int fiemap(int fd, uint32_t flags, int (*handle_extent)(struct fiemap_extent)) { - const size_t fm_size = sysconf(_SC_PAGESIZE);; + const size_t fm_size = sysconf(_SC_PAGESIZE);; struct fiemap *fm = calloc(1, fm_size); if (!fm) error(EXIT_FAILURE, errno, "malloc"); -- cgit v1.2.3