Fix some warnings
authortholo <tholo@openbsd.org>
Mon, 16 Sep 1996 02:41:53 +0000 (02:41 +0000)
committertholo <tholo@openbsd.org>
Mon, 16 Sep 1996 02:41:53 +0000 (02:41 +0000)
lib/libtermlib/globals.c
lib/libtermlib/tparm.c

index 7e96e9e..33197ce 100644 (file)
@@ -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>
  */
 
 #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;
index 6e163db..a8c8d26 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: tparm.c,v 1.2 1996/06/02 23:47:51 tholo Exp $ */
+/*     $OpenBSD: tparm.c,v 1.3 1996/09/16 02:41:53 tholo Exp $ */
 
 /*
  * Copyright (c) 1996 SigmaSoft, Th. Lockert <tholo@sigmasoft.com>
@@ -31,7 +31,7 @@
  */
 
 #ifndef lint
-static char rcsid[] = "$OpenBSD: tparm.c,v 1.2 1996/06/02 23:47:51 tholo Exp $";
+static char rcsid[] = "$OpenBSD: tparm.c,v 1.3 1996/09/16 02:41:53 tholo Exp $";
 #endif
 
 #include <stdio.h>
@@ -345,9 +345,11 @@ tparm(va_alist)
     va_start(ap);
     str = va_arg(ap, const char *);
 #else
+    /* LINTED pointer casts may be troublesome */
     va_start(ap, str);
 #endif
     p = _tparm(str, buf, ap);
+    /* LINTED expression has no effect */
     va_end(ap);
     return(p);
 }