From: ng0 Date: Sat, 7 Sep 2019 09:35:12 +0000 (+0000) Subject: util/disk.c: STAT64->stat64 X-Git-Tag: v0.11.7~148 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d3da1c73acc067f76e38022ca9786cca564e4d19;p=oweals%2Fgnunet.git util/disk.c: STAT64->stat64 --- diff --git a/src/util/disk.c b/src/util/disk.c index c1f24e4c8..959cb62cf 100644 --- a/src/util/disk.c +++ b/src/util/disk.c @@ -153,7 +153,7 @@ getSizeRec (void *cls, const char *fn) ! (defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64) STRUCT_STAT64 buf; - if (0 != STAT64 (fn, &buf)) + if (0 != stat64 (fn, &buf)) { LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_DEBUG, "stat64", fn); return GNUNET_SYSERR;