1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-15 23:50:44 +00:00
freebsd-ports/x11-fm/endeavour/files/patch-ab

15 lines
520 B
Plaintext
Raw Normal View History

--- devrec.c.orig Thu Oct 7 01:19:47 1999
+++ devrec.c Thu Oct 7 13:52:49 1999
@@ -389,8 +389,9 @@
capacity_available = atol(strv[3]);
/* Calculate capacity percent. */
- capacity_percent = (double)capacity_used /
- (double)capacity_total * 100;
+ if ((double)capacity_total)
+ capacity_percent = (double)capacity_used /
+ (double)capacity_total * 100;
strncpy(path, strv[5], PATH_MAX + NAME_MAX);
path[PATH_MAX + NAME_MAX - 1] = '\0';