summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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");