From: Jeff Trawick Date: Sun, 20 May 2001 09:31:04 +0000 (+0000) Subject: Tru64 cc is bitchy about trailing commas in an enum list. X-Git-Tag: 2.0.19~208 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ffd9419a695c8601dcd7b85b91b006e15faa839d;p=thirdparty%2Fapache%2Fhttpd.git Tru64 cc is bitchy about trailing commas in an enum list. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89172 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/metadata/mod_headers.c b/modules/metadata/mod_headers.c index 2d896119d15..8c90e23d90f 100644 --- a/modules/metadata/mod_headers.c +++ b/modules/metadata/mod_headers.c @@ -127,7 +127,7 @@ typedef enum { typedef enum { hdr_in = 0, /* RequestHeader */ - hdr_out = 1, /* Header */ + hdr_out = 1 /* Header */ } hdr_inout; typedef struct {