swap_perc: check for division by zero on obsd too

master
Aaron Marcher 8 years ago
parent 806815778f
commit 4bd234c7ef

@ -188,6 +188,10 @@
getstats(&total, &used);
if (total == 0) {
return NULL;
}
return bprintf("%d%%", 100 * used / total);
}

Loading…
Cancel
Save