summaryrefslogtreecommitdiffstats
path: root/worm
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1993-08-10 02:05:36 +0000
committermycroft <mycroft@NetBSD.org>1993-08-10 02:05:36 +0000
commit8d7a352d465eebb5abe987da7507f12edbeaba5f (patch)
tree2bed7a71773ff2e287401f14cbe8bc72270944c9 /worm
parentc1a8dffd36c154d806f05509cef4e9cab4a6580e (diff)
downloadbsdgames-darwin-8d7a352d465eebb5abe987da7507f12edbeaba5f.tar.gz
bsdgames-darwin-8d7a352d465eebb5abe987da7507f12edbeaba5f.tar.zst
bsdgames-darwin-8d7a352d465eebb5abe987da7507f12edbeaba5f.zip
Compare baudrate() with 1200, not B1200.
Diffstat (limited to 'worm')
-rw-r--r--worm/worm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/worm/worm.c b/worm/worm.c
index 374cc0da..05671d49 100644
--- a/worm/worm.c
+++ b/worm/worm.c
@@ -39,7 +39,7 @@ char copyright[] =
#ifndef lint
/*static char sccsid[] = "from: @(#)worm.c 5.8 (Berkeley) 2/28/91";*/
-static char rcsid[] = "$Id: worm.c,v 1.2 1993/08/01 18:49:30 mycroft Exp $";
+static char rcsid[] = "$Id: worm.c,v 1.3 1993/08/10 02:05:36 mycroft Exp $";
#endif /* not lint */
/*
@@ -100,7 +100,7 @@ main(argc, argv)
initscr();
crmode();
noecho();
- slow = (baudrate() <= B1200);
+ slow = (baudrate() <= 1200);
clear();
stw = newwin(1, COLS-1, 0, 0);
tv = newwin(LINES-1, COLS-1, 1, 0);