summaryrefslogtreecommitdiffstats
path: root/byterun/terminfo.c
diff options
context:
space:
mode:
Diffstat (limited to 'byterun/terminfo.c')
-rw-r--r--byterun/terminfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/byterun/terminfo.c b/byterun/terminfo.c
index ea0b59098..83b5ba225 100644
--- a/byterun/terminfo.c
+++ b/byterun/terminfo.c
@@ -31,7 +31,7 @@
value terminfo_setup(unit) /* ML */
value unit;
{
- static buffer[1024];
+ static char buffer[1024];
if (tgetent(buffer, getenv("TERM")) != 1) failwith("Terminfo.setupterm");
return Val_unit;
}