summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn (J5) Palmieri <johnp@redhat.com>2008-04-16 10:49:25 -0400
committerJohn (J5) Palmieri <johnp@redhat.com>2008-04-16 10:53:00 -0400
commit12e838d766c14368112e0333146d77e806c151db (patch)
treef030de5223e7f8d1b4063eb74bc01ba101038ecc
parentb4cbb84fe0b7dc4ea847190f25234a0b2ee59b40 (diff)
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
-rw-r--r--ChangeLog5
-rw-r--r--tools/dbus-monitor.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e69de29b..0bc33d45 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -0,0 +1,5 @@
+2008-04-16 John (J5) Palmieri <johnp@redhat.com>
+
+ * 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 45d87181..ee03d854 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