util/disk.c: fix failure to build
authorng0 <ng0@n0.is>
Mon, 9 Sep 2019 11:18:58 +0000 (11:18 +0000)
committerng0 <ng0@n0.is>
Mon, 9 Sep 2019 11:18:58 +0000 (11:18 +0000)
src/util/disk.c

index 7f179e7ee990fb3f7c42880313337e26ae2aaec2..7b85cdeab762ab2bb1dd92469b9a1149a3faca3b 100644 (file)
@@ -149,7 +149,7 @@ getSizeRec(void *cls, const char *fn)
 
 #if defined(HAVE_STAT64) && \
   !(defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64)
-  struct _stati64 buf;
+  struct _stat64 buf;
 
   if (0 != stat64(fn, &buf))
     {