diff options
author | ng0 <ng0@n0.is> | 2019-09-07 09:35:12 +0000 |
---|---|---|
committer | ng0 <ng0@n0.is> | 2019-09-07 09:35:12 +0000 |
commit | d3da1c73acc067f76e38022ca9786cca564e4d19 (patch) | |
tree | 255ea4bb70f2624b8b420ff3d6aec3047d80005c /src | |
parent | 434eb927e3ddefffe163320d5c14638a212c78ea (diff) |
util/disk.c: STAT64->stat64
Diffstat (limited to 'src')
-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; |