From: Ian Darwin Date: Wed, 24 Mar 1993 14:22:56 +0000 (+0000) Subject: Add braces to eliminate warning from "gcc -Wall" about partly-braced inits. X-Git-Tag: FILE3_27~161 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6e5110d639d1a645d2db55556960f96f9f4cb1b5;p=file Add braces to eliminate warning from "gcc -Wall" about partly-braced inits. --- diff --git a/src/names.h b/src/names.h index 7479f431..cbd00a72 100644 --- a/src/names.h +++ b/src/names.h @@ -10,7 +10,7 @@ * * See LEGAL.NOTICE * - * $Id: names.h,v 1.9 1992/09/08 15:32:20 ian Exp $ + * $Id: names.h,v 1.10 1993/03/24 14:22:56 ian Exp $ */ /* these types are used to index the table 'types': keep em in sync! */ @@ -85,5 +85,6 @@ static struct names { {"Newsgroups:", L_NEWS}, {"Path:", L_NEWS}, {"Organization:",L_NEWS}, - 0}; + {0} + }; #define NNAMES ((sizeof(names)/sizeof(struct names)) - 1)