mirror of
https://github.com/jarun/nnn.git
synced 2024-12-01 02:49:44 +00:00
Use ffs() instead of ffsl()
This commit is contained in:
parent
dca0f5378c
commit
9bfc2fdc29
4
nnn.c
4
nnn.c
|
@ -1619,7 +1619,7 @@ get_fs_free(const char *path)
|
||||||
if (statvfs(path, &svb) == -1)
|
if (statvfs(path, &svb) == -1)
|
||||||
return 0;
|
return 0;
|
||||||
else
|
else
|
||||||
return svb.f_bavail << (ffsl(svb.f_frsize) - 1);
|
return svb.f_bavail << (ffs(svb.f_frsize) - 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
static size_t
|
static size_t
|
||||||
|
@ -1630,7 +1630,7 @@ get_fs_capacity(const char *path)
|
||||||
if (statvfs(path, &svb) == -1)
|
if (statvfs(path, &svb) == -1)
|
||||||
return 0;
|
return 0;
|
||||||
else
|
else
|
||||||
return svb.f_blocks << (ffsl(svb.f_bsize) - 1);
|
return svb.f_blocks << (ffs(svb.f_bsize) - 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
|
|
Loading…
Reference in a new issue