summaryrefslogtreecommitdiff
path: root/src/util/disk.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/disk.c')
-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 c1f24e4c8..959cb62cf 100644
--- a/src/util/disk.c
+++ b/src/util/disk.c
@@ -153,7 +153,7 @@ getSizeRec (void *cls, const char *fn)
153 ! (defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64) 153 ! (defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64)
154 STRUCT_STAT64 buf; 154 STRUCT_STAT64 buf;
155 155
156 if (0 != STAT64 (fn, &buf)) 156 if (0 != stat64 (fn, &buf))
157 { 157 {
158 LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_DEBUG, "stat64", fn); 158 LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_DEBUG, "stat64", fn);
159 return GNUNET_SYSERR; 159 return GNUNET_SYSERR;