mirror of https://github.com/procxx/kepka.git
Fix int32 overflow in local storage stats.
This commit is contained in:
parent
93793d8bdd
commit
63203ecc00
|
@ -99,7 +99,7 @@ struct TaggedValue {
|
|||
|
||||
struct TaggedSummary {
|
||||
size_type count = 0;
|
||||
size_type totalSize = 0;
|
||||
int64 totalSize = 0;
|
||||
};
|
||||
struct Stats {
|
||||
TaggedSummary full;
|
||||
|
|
Loading…
Reference in New Issue