Ethereal-dev: [Ethereal-dev] Trailing comma after last enum constant

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

Date: Wed, 29 Dec 2004 15:41:31 -0600
The IBM C compiler doesn't like a trailing comma after the last enum
constant.

-- 
albert chin (china@xxxxxxxxxxxxxxxxxx)

-- snip snip
--- gtk/help_dlg.h.orig	2004-12-29 15:39:09.000000000 -0600
+++ gtk/help_dlg.h	2004-12-29 15:39:41.000000000 -0600
@@ -65,10 +65,11 @@
     LOCALPAGE_MAN_TETHEREAL,
     LOCALPAGE_MAN_MERGECAP,
     LOCALPAGE_MAN_EDITCAP,
-    LOCALPAGE_MAN_TEXT2PCAP,
+    LOCALPAGE_MAN_TEXT2PCAP
 
     /* local help pages (User's Guide) */
 #ifdef ETHEREAL_EUG_DIR
+    ,
     HELP_CONTENT = 200,
     HELP_CAPTURE_OPTIONS_DIALOG,
     HELP_CAPTURE_FILTERS_DIALOG,