mirror of
https://github.com/jarun/nnn.git
synced 2025-03-18 20:39:45 +00:00
Fixed calculation of capacity on OpenBSD (#441)
This commit is contained in:
parent
d1b2bb1e76
commit
527e995f1f
1 changed files with 1 additions and 1 deletions
|
@ -3285,7 +3285,7 @@ static size_t get_fs_info(const char *path, bool type)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if (type == CAPACITY)
|
if (type == CAPACITY)
|
||||||
return svb.f_blocks << ffs((int)(svb.f_bsize >> 1));
|
return svb.f_blocks << ffs((int)(svb.f_frsize >> 1));
|
||||||
|
|
||||||
return svb.f_bavail << ffs((int)(svb.f_frsize >> 1));
|
return svb.f_bavail << ffs((int)(svb.f_frsize >> 1));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue