From fd72e33d12293a3753876ce1aea60a086fe09c1b Mon Sep 17 00:00:00 2001 From: Christos Zoulas Date: Thu, 16 Sep 1993 21:14:20 +0000 Subject: [PATCH] Fixed last NULL entry to avoid gcc warnings. --- src/names.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/names.h b/src/names.h index cbd00a72..5d989ee5 100644 --- a/src/names.h +++ b/src/names.h @@ -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) -- 2.40.0