From: ng0 Date: Mon, 9 Sep 2019 11:18:58 +0000 (+0000) Subject: util/disk.c: fix failure to build X-Git-Tag: v0.11.7~135 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4a11b54467190958a4a3e7064517d600f6df5ebc;p=oweals%2Fgnunet.git util/disk.c: fix failure to build --- 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) #if defined(HAVE_STAT64) && \ !(defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64) - struct _stati64 buf; + struct _stat64 buf; if (0 != stat64(fn, &buf)) {