summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-09-09 11:29:02 +0000
committerng0 <ng0@n0.is>2019-09-09 11:29:02 +0000
commitd2a57911f9d76396c28b781615a19c1dd9fe03c2 (patch)
tree3dc9444fd29657d772533fddec0bed0a63e2741d
parent4a11b54467190958a4a3e7064517d600f6df5ebc (diff)
downloadgnunet-d2a57911f9d76396c28b781615a19c1dd9fe03c2.tar.gz
gnunet-d2a57911f9d76396c28b781615a19c1dd9fe03c2.zip
typo
-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 7b85cdeab..c5ea42ee6 100644
--- a/src/util/disk.c
+++ b/src/util/disk.c
@@ -149,7 +149,7 @@ getSizeRec(void *cls, const char *fn)
149 149
150#if defined(HAVE_STAT64) && \ 150#if defined(HAVE_STAT64) && \
151 !(defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64) 151 !(defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64)
152 struct _stat64 buf; 152 struct stat64 buf;
153 153
154 if (0 != stat64(fn, &buf)) 154 if (0 != stat64(fn, &buf))
155 { 155 {