From: John (J5) Palmieri Date: Wed, 16 Apr 2008 14:49:25 +0000 (-0400) Subject: take out trailing comma inside an enum so non gcc compilers don't error out X-Git-Tag: dbus-1.2.3~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eead418b248106c0046a36ae43fce8ec6614dbf5;p=thirdparty%2Fdbus.git take out trailing comma inside an enum so non gcc compilers don't error out * tools/dbus-monitor.c: take out the trailing comma in the ProfileAttributeFlags enum as it isn't in our style guides and causes some compilers to error out --- diff --git a/ChangeLog b/ChangeLog index e69de29bb..0bc33d458 100644 --- a/ChangeLog +++ b/ChangeLog @@ -0,0 +1,5 @@ +2008-04-16 John (J5) Palmieri + + * tools/dbus-monitor.c: take out the trailing comma in the + ProfileAttributeFlags enum as it isn't in our style guides + and causes some compilers to error out diff --git a/tools/dbus-monitor.c b/tools/dbus-monitor.c index 45d871813..ee03d8545 100644 --- a/tools/dbus-monitor.c +++ b/tools/dbus-monitor.c @@ -91,7 +91,7 @@ typedef enum PROFILE_ATTRIBUTE_FLAG_PATH = 16, PROFILE_ATTRIBUTE_FLAG_INTERFACE = 32, PROFILE_ATTRIBUTE_FLAG_MEMBER = 64, - PROFILE_ATTRIBUTE_FLAG_ERROR_NAME = 128, + PROFILE_ATTRIBUTE_FLAG_ERROR_NAME = 128 } ProfileAttributeFlags; static void