diff options
Diffstat (limited to 'src/util/disk.c')
-rw-r--r-- | src/util/disk.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |