diff options
Diffstat (limited to 'usr.bin/xlint/lint1/decl.c')
-rw-r--r-- | usr.bin/xlint/lint1/decl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/xlint/lint1/decl.c b/usr.bin/xlint/lint1/decl.c index 5524f95d53c..ef9c2f6434b 100644 --- a/usr.bin/xlint/lint1/decl.c +++ b/usr.bin/xlint/lint1/decl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: decl.c,v 1.3 1998/07/27 16:53:39 deraadt Exp $ */ +/* $OpenBSD: decl.c,v 1.4 1998/07/29 03:14:48 millert Exp $ */ /* $NetBSD: decl.c,v 1.11 1995/10/02 17:34:16 jpo Exp $ */ /* @@ -33,7 +33,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: decl.c,v 1.3 1998/07/27 16:53:39 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: decl.c,v 1.4 1998/07/29 03:14:48 millert Exp $"; #endif #include <sys/param.h> @@ -1427,7 +1427,7 @@ sym_t * dname(sym) sym_t *sym; { - scl_t sc; + scl_t sc = NOSCL; if (sym->s_scl == NOSCL) { dcs->d_rdcsym = NULL; @@ -1557,7 +1557,7 @@ mktag(tag, kind, decl, semi) tspec_t kind; int decl, semi; { - scl_t scl; + scl_t scl = NOSCL; type_t *tp; if (kind == STRUCT) { |