summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@beefcake.parabola.nu>2018-05-18 18:26:18 -0400
committerLuke Shumaker <lukeshu@beefcake.parabola.nu>2018-05-18 18:26:18 -0400
commit1e1b7886de107b7fc5cade05a954c25136ebf6cc (patch)
tree79d44f98ff3a85c4c6ce7197ab835b86f7b4b229
parentbba220a068db1c2668fe33ddd618054e2947cb68 (diff)
fix indentation
-rw-r--r--lib/extent-map.c2
1 files changed, 1 insertions, 1 deletions
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");