diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-09-16 02:41:54 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-09-16 02:41:54 +0000 |
commit | 18689c7050c690ee146e0d801ad3215a2e4f4fce (patch) | |
tree | 3631fc5ab19114531c70a6a8a36761a49c649c68 /lib/libtermlib/globals.c | |
parent | f50922d35bbce02f83eddd98469a610651b98186 (diff) |
Fix some warnings
Diffstat (limited to 'lib/libtermlib/globals.c')
-rw-r--r-- | lib/libtermlib/globals.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libtermlib/globals.c b/lib/libtermlib/globals.c index 7e96e9ea552..33197ce30e8 100644 --- a/lib/libtermlib/globals.c +++ b/lib/libtermlib/globals.c @@ -1,4 +1,4 @@ -/* $OpenBSD: globals.c,v 1.2 1996/08/31 02:40:30 tholo Exp $ */ +/* $OpenBSD: globals.c,v 1.3 1996/09/16 02:41:53 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.2 1996/08/31 02:40:30 tholo Exp $"; +static char rcsid[] = "$OpenBSD: globals.c,v 1.3 1996/09/16 02:41:53 tholo Exp $"; #endif #include "term.h" TERMINAL _ti_empty = { - -1, 9600, {}, {}, "dumb", {}, { 80, 0, 24 }, {} + -1, 9600, { 0 }, { 0 }, "dumb", { 0 }, { 80, 0, 24 }, { 0 } }; TERMINAL *cur_term = &_ti_empty; |