aboutsummaryrefslogtreecommitdiffstats
path: root/display.c
diff options
context:
space:
mode:
Diffstat (limited to 'display.c')
-rw-r--r--display.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/display.c b/display.c
index 4a09264..e6b8037 100644
--- a/display.c
+++ b/display.c
@@ -1,4 +1,4 @@
-/* $Id: display.c,v 1.39 2002/11/25 16:57:16 ukai Exp $ */
+/* $Id: display.c,v 1.40 2002/11/26 16:57:39 ukai Exp $ */
#include <signal.h>
#include "fm.h"
@@ -330,7 +330,7 @@ displayBuffer(Buffer *buf, int mode)
if (displayLineInfo && buf->currentLine != NULL && buf->lastLine != NULL) {
int cl = buf->currentLine->real_linenumber;
int ll = buf->lastLine->real_linenumber;
- int r = (int)((double)cl * 100.0 / (double)ll + 0.5);
+ int r = (int)((double)cl * 100.0 / (double)(ll ? ll : 1) + 0.5);
Strcat(msg, Sprintf("%d/%d (%d%%)", cl, ll, r));
}
else