aboutsummaryrefslogtreecommitdiff
path: root/src/util/disk.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/disk.c')
-rw-r--r--src/util/disk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/disk.c b/src/util/disk.c
index ae3ac4c41..cebf6d033 100644
--- a/src/util/disk.c
+++ b/src/util/disk.c
@@ -171,13 +171,13 @@ getSizeRec (void *cls, const char *fn)
171#ifdef HAVE_STAT64 171#ifdef HAVE_STAT64
172 if (0 != STAT64 (fn, &buf)) 172 if (0 != STAT64 (fn, &buf))
173 { 173 {
174 LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_WARNING, "stat64", fn); 174 LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_DEBUG, "stat64", fn);
175 return GNUNET_SYSERR; 175 return GNUNET_SYSERR;
176 } 176 }
177#else 177#else
178 if (0 != STAT (fn, &buf)) 178 if (0 != STAT (fn, &buf))
179 { 179 {
180 LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_WARNING, "stat", fn); 180 LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_DEBUG, "stat", fn);
181 return GNUNET_SYSERR; 181 return GNUNET_SYSERR;
182 } 182 }
183#endif 183#endif