mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-06 08:20:13 +01:00
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
This commit is contained in:
parent
a2b72d577e
commit
eead418b24
2 changed files with 6 additions and 1 deletions
|
|
@ -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
|
||||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue