1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-25 21:07:40 +00:00
freebsd-ports/x11-fm/endeavour/files/patch-ab
Chris Piazza 168646bfeb Endeavour is a graphical file manager and image viewer
for X.  It is aimed towards newer users who have a strong
Windows background.
1999-10-07 21:04:48 +00:00

15 lines
520 B
Plaintext

--- 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';