From 71814776d9e54033a7a5fe8427c43504ea8f1f8d Mon Sep 17 00:00:00 2001 From: Gene Carlson Date: Sat, 14 Sep 2024 14:14:27 +0900 Subject: [PATCH] src/fs.cc: Fix whitespace mistake. --- src/fs.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/fs.cc b/src/fs.cc index 2a064846e..964e82fd0 100644 --- a/src/fs.cc +++ b/src/fs.cc @@ -147,10 +147,10 @@ static void update_fs_stat(struct fs_stat *fs) { get_fs_type(fs->path, fs->type); #endif } else { - if (fs->errored == 0) { - NORM_ERR("statfs '%s': %s", fs->path, strerror(errno)); - fs->errored = 1; - } + if (fs->errored == 0) { + NORM_ERR("statfs '%s': %s", fs->path, strerror(errno)); + fs->errored = 1; + } fs->size = 0; fs->avail = 0; fs->free = 0;