summaryrefslogtreecommitdiff
path: root/Utility/libdiskfree.c
diff options
context:
space:
mode:
Diffstat (limited to 'Utility/libdiskfree.c')
-rw-r--r--Utility/libdiskfree.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Utility/libdiskfree.c b/Utility/libdiskfree.c
index 54e8c0894..a37cb7571 100644
--- a/Utility/libdiskfree.c
+++ b/Utility/libdiskfree.c
@@ -58,10 +58,10 @@ unsigned long long int diskfree(const char *path) {
unsigned long long int available, blocksize;
struct STATSTRUCT buf;
- if (STATCALL(path, &buf) != 0) {
+ if (STATCALL(path, &buf) != 0)
return 0; /* errno is set */
- }
- errno = 0;
+ else
+ errno = 0;
available = buf.f_bavail;
blocksize = buf.f_bsize;