summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/util/disk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/disk.c b/src/util/disk.c
index 7f179e7ee..7b85cdeab 100644
--- a/src/util/disk.c
+++ b/src/util/disk.c
@@ -149,7 +149,7 @@ getSizeRec(void *cls, const char *fn)
149 149
150#if defined(HAVE_STAT64) && \ 150#if defined(HAVE_STAT64) && \
151 !(defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64) 151 !(defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64)
152 struct _stati64 buf; 152 struct _stat64 buf;
153 153
154 if (0 != stat64(fn, &buf)) 154 if (0 != stat64(fn, &buf))
155 { 155 {