diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-01-24 02:14:48 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-01-24 02:14:48 +0000 |
commit | f56360c779e87351a47c0c856c80226e2d358731 (patch) | |
tree | 3bf1e708c10e277a217320072f02b01ecb850393 /packet-rsvp.c | |
parent | 25bc5800a4127d330101bc941311e185e09e25e0 (diff) | |
download | wireshark-f56360c779e87351a47c0c856c80226e2d358731.tar.gz wireshark-f56360c779e87351a47c0c856c80226e2d358731.tar.bz2 wireshark-f56360c779e87351a47c0c856c80226e2d358731.zip |
From Albert Chin: get rid of trailing commas in enums, as Digital's,
err, umm, Compaq's, err, umm, HP's Tru64 C compiler doesn't like them.
svn path=/trunk/; revision=6994
Diffstat (limited to 'packet-rsvp.c')
-rw-r--r-- | packet-rsvp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-rsvp.c b/packet-rsvp.c index a9b9e6b6cd..daf5af9b93 100644 --- a/packet-rsvp.c +++ b/packet-rsvp.c @@ -3,7 +3,7 @@ * * (c) Copyright Ashok Narayanan <ashokn@cisco.com> * - * $Id: packet-rsvp.c,v 1.78 2002/12/02 23:43:29 guy Exp $ + * $Id: packet-rsvp.c,v 1.79 2003/01/24 02:14:48 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -123,7 +123,7 @@ enum { TT_DETOUR, TT_UNKNOWN_CLASS, - TT_MAX, + TT_MAX }; static gint ett_treelist[TT_MAX]; static gint *ett_tree[TT_MAX]; @@ -233,7 +233,7 @@ enum rsvp_classes { RSVP_CLASS_LSP_TUNNEL_IF_ID = 227, RSVP_CLASS_FAST_REROUTE = 228, /* TBD */ - RSVP_CLASS_DETOUR = 229, /* TBD */ + RSVP_CLASS_DETOUR = 229 /* TBD */ }; static value_string rsvp_class_vals[] = { |