]> granicus.if.org Git - file/commitdiff
Fixed last NULL entry to avoid gcc warnings.
authorChristos Zoulas <christos@zoulas.com>
Thu, 16 Sep 1993 21:14:20 +0000 (21:14 +0000)
committerChristos Zoulas <christos@zoulas.com>
Thu, 16 Sep 1993 21:14:20 +0000 (21:14 +0000)
src/names.h

index cbd00a727ee4866915752465f11e706b33df04f1..5d989ee564aebdb5d23c69d5b55041ae79c8b1ba 100644 (file)
@@ -10,7 +10,7 @@
  *
  * See LEGAL.NOTICE
  *
- * $Id: names.h,v 1.10 1993/03/24 14:22:56 ian Exp $
+ * $Id: names.h,v 1.11 1993/09/16 21:14:20 christos Exp $
  */
 
 /* these types are used to index the table 'types': keep em in sync! */
@@ -85,6 +85,6 @@ static struct names {
        {"Newsgroups:", L_NEWS},
        {"Path:",       L_NEWS},
        {"Organization:",L_NEWS},
-       {0}
-       };
+       {NULL,          0}
+};
 #define NNAMES ((sizeof(names)/sizeof(struct names)) - 1)