summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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 7b85cdeab..c5ea42ee6 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 _stat64 buf; 152 struct stat64 buf;
153 153
154 if (0 != stat64(fn, &buf)) 154 if (0 != stat64(fn, &buf))
155 { 155 {