diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-08-31 02:40:31 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-08-31 02:40:31 +0000 |
commit | 8f547f55975d4bad5f74d8fa0a3afce475ace830 (patch) | |
tree | 830d64eabd6986d6945b18481929dd521d04ea90 /lib/libtermlib/globals.c | |
parent | 54fe9c257042886934179f754dc76be80bcc88b4 (diff) |
Fix thinko in last change
Diffstat (limited to 'lib/libtermlib/globals.c')
-rw-r--r-- | lib/libtermlib/globals.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libtermlib/globals.c b/lib/libtermlib/globals.c index 2de158e8bff..7e96e9ea552 100644 --- a/lib/libtermlib/globals.c +++ b/lib/libtermlib/globals.c @@ -1,4 +1,4 @@ -/* $OpenBSD: globals.c,v 1.1 1996/08/31 02:36:59 tholo Exp $ */ +/* $OpenBSD: globals.c,v 1.2 1996/08/31 02:40:30 tholo Exp $ */ /* * Copyright (c) 1996 SigmaSoft, Th. Lockert <tholo@sigmasoft.com> @@ -31,13 +31,13 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: globals.c,v 1.1 1996/08/31 02:36:59 tholo Exp $"; +static char rcsid[] = "$OpenBSD: globals.c,v 1.2 1996/08/31 02:40:30 tholo Exp $"; #endif #include "term.h" -static TERMINAL empty = { +TERMINAL _ti_empty = { -1, 9600, {}, {}, "dumb", {}, { 80, 0, 24 }, {} }; -TERMINAL *cur_term = ∅ +TERMINAL *cur_term = &_ti_empty; |