mirror of https://github.com/xzeldon/htop.git
ZfsCompressedArcMeter: avoid division by 0
On systems not using ZFS `this->values[0]` is zero.
This commit is contained in:
parent
2d7069feb4
commit
099dab88be
|
@ -33,7 +33,11 @@ void ZfsCompressedArcMeter_readStats(Meter* this, const ZfsArcStats* stats) {
|
|||
}
|
||||
|
||||
static void ZfsCompressedArcMeter_printRatioString(const Meter* this, char* buffer, size_t size) {
|
||||
if (this->values[0] > 0) {
|
||||
xSnprintf(buffer, size, "%.2f:1", this->total / this->values[0]);
|
||||
} else {
|
||||
xSnprintf(buffer, size, "N/A");
|
||||
}
|
||||
}
|
||||
|
||||
static void ZfsCompressedArcMeter_updateValues(Meter* this) {
|
||||
|
|
Loading…
Reference in New Issue