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 51fd67d..146aa36 100644
--- a/display.c
+++ b/display.c
@@ -1,4 +1,4 @@
-/* $Id: display.c,v 1.9 2001/11/24 16:32:10 inu Exp $ */
+/* $Id: display.c,v 1.10 2001/11/29 09:34:14 ukai Exp $ */
#include <signal.h>
#include "fm.h"
@@ -402,7 +402,7 @@ redrawLine(Buffer *buf, Line *l, int i)
buf->COLS = COLS - buf->rootX;
}
if (l->real_linenumber)
- sprintf(tmp, "%*d:", buf->rootX - 1, l->real_linenumber);
+ sprintf(tmp, "%*ld:", buf->rootX - 1, l->real_linenumber);
else
sprintf(tmp, "%*s ", buf->rootX - 1, "");
addstr(tmp);