Skip to content

Commit

Permalink
src/fs.cc: Fix whitespace mistake.
Browse files Browse the repository at this point in the history
  • Loading branch information
pghvlaans authored and brndnmtthws committed Sep 15, 2024
1 parent 839602b commit 7181477
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/fs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 7181477

Please sign in to comment.