aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ceph.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-08-13 13:03:51 +0200
committerAnders Broman <a.broman58@gmail.com>2014-08-16 16:30:53 +0000
commit72229b20aa6b42aa6e20e85dbb78c863ee7f33d6 (patch)
tree67194e72a1ca1492ef52c63555f2066c9e21cd4d /epan/dissectors/packet-ceph.c
parent3cddcc2ce0d74ef19ebcaba192386149487c197d (diff)
Fix comma at end of enumerator list [-Wpedantic]
Change-Id: If8b817e8276bb065a257f209bf5b0f566d9f7907 Reviewed-on: https://code.wireshark.org/review/3641 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-ceph.c')
-rw-r--r--epan/dissectors/packet-ceph.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-ceph.c b/epan/dissectors/packet-ceph.c
index 85121ebaff..7a437a034d 100644
--- a/epan/dissectors/packet-ceph.c
+++ b/epan/dissectors/packet-ceph.c
@@ -646,7 +646,7 @@ static const guint8 *C_BANNER = (const guint8*)"ceph";
enum c_banner {
C_BANNER_SIZE = 9,
C_BANNER_SIZE_MIN = 4,
- C_BANNER_SIZE_MAX = 30,
+ C_BANNER_SIZE_MAX = 30
};
/** Feature Flags */
@@ -702,13 +702,13 @@ typedef enum _c_features {
/** Connect Message Flags */
typedef enum _c_flags {
- C_FLAG_LOSSY = 1 << 0,
+ C_FLAG_LOSSY = 1 << 0
} c_flags;
typedef enum _c_pgpool_flags {
C_PGPOOL_FLAG_HASHPSPOOL = 1 << 0, /* hash pg seed and pool together (instead of adding) */
C_PGPOOL_FLAG_FULL = 1 << 1, /* pool is full */
- C_PGPOOL_FLAG_FAKE_EC_POOL = 1 << 2, /* require ReplicatedPG to act like an EC pg */
+ C_PGPOOL_FLAG_FAKE_EC_POOL = 1 << 2 /* require ReplicatedPG to act like an EC pg */
} c_pgpool_flags;
/** Macros to create value_stings.
@@ -1446,7 +1446,7 @@ char *c_format_uuid(tvbuff_t *tvb, guint off)
enum c_ressembly {
C_NEEDMORE = G_MAXUINT,
- C_INVALID = 0,
+ C_INVALID = 0
};
/*** Expert info warning functions. ***/