summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2000-04-01 17:20:11 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2000-04-01 17:20:11 +0000
commit22879eb0a2c6b28396414f0ffbb300cf6fd723d8 (patch)
tree2a69a84f651e123e7bbaa64a5cf3681cc1a31031
parentefdc3fbee049490b79ecafcfa4c8621f6885cf7c (diff)
commons type mismatch; ath@algonet.se
-rw-r--r--bin/ed/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/ed/main.c b/bin/ed/main.c
index b033ed71ee3..45d150cf785 100644
--- a/bin/ed/main.c
+++ b/bin/ed/main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main.c,v 1.17 2000/01/22 20:24:49 deraadt Exp $ */
+/* $OpenBSD: main.c,v 1.18 2000/04/01 17:20:10 deraadt Exp $ */
/* $NetBSD: main.c,v 1.3 1995/03/21 09:04:44 cgd Exp $ */
/* main.c: This file contains the main control and user-interface routines
@@ -39,7 +39,7 @@ char *copyright =
#if 0
static char *rcsid = "@(#)main.c,v 1.1 1994/02/01 00:34:42 alm Exp";
#else
-static char rcsid[] = "$OpenBSD: main.c,v 1.17 2000/01/22 20:24:49 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: main.c,v 1.18 2000/04/01 17:20:10 deraadt Exp $";
#endif
#endif /* not lint */
@@ -458,7 +458,7 @@ next_addr()
int patlock = 0; /* if set, pattern not freed by get_compiled_pattern() */
-long rows = 22; /* scroll length: ws_row - 2 */
+int rows = 22; /* scroll length: ws_row - 2 */
/* exec_command: execute the next command in command buffer; return print
request, if any */