mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04:00
Fix integer width oops calculating disk space().
This commit is contained in:
parent
ff5e20a7a4
commit
d905c446bf
@ -239,10 +239,11 @@ space_info space(const path& p) {
|
||||
#if _MAX_SS != _MIN_SS
|
||||
static_assert(false, "FatFs not configured for fixed sector size");
|
||||
#else
|
||||
const std::uintmax_t cluster_bytes = fs->csize * _MIN_SS;
|
||||
return {
|
||||
(fs->n_fatent - 2) * fs->csize * _MIN_SS,
|
||||
free_clusters * fs->csize * _MIN_SS,
|
||||
free_clusters * fs->csize * _MIN_SS,
|
||||
(fs->n_fatent - 2) * cluster_bytes,
|
||||
free_clusters * cluster_bytes,
|
||||
free_clusters * cluster_bytes,
|
||||
};
|
||||
#endif
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user