소스 검색

swap_perc: check for division by zero on obsd too

Aaron Marcher 8 년 전
부모
커밋
4bd234c7ef
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      components/swap.c

+ 4 - 0
components/swap.c

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