diff options
author | Alexis La Goutte <alexis.lagoutte@gmail.com> | 2017-11-11 16:25:16 +0100 |
---|---|---|
committer | Anders Broman <a.broman58@gmail.com> | 2017-11-11 19:10:30 +0000 |
commit | 499ae4ab573fbfefdb1c200e3177e18844e545b5 (patch) | |
tree | 32b123cd5012b1468456f38557ea80f0eb96ad9e | |
parent | 2092b66a0bbcef2764e3d708a44af2f378b39dba (diff) | |
download | wireshark-499ae4ab573fbfefdb1c200e3177e18844e545b5.tar.gz wireshark-499ae4ab573fbfefdb1c200e3177e18844e545b5.tar.bz2 wireshark-499ae4ab573fbfefdb1c200e3177e18844e545b5.zip |
address(.h): fix commas at the end of enumerator lists are a C++11 extension [-Wc++11-extensions]
Change-Id: Ibfc95e085b2712f7a71f6559ae205de87aab12f6
Reviewed-on: https://code.wireshark.org/review/24365
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
-rw-r--r-- | epan/address.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/address.h b/epan/address.h index 61abf2fabd..04a353ee4a 100644 --- a/epan/address.h +++ b/epan/address.h @@ -379,7 +379,7 @@ typedef enum { CT_ISUP, /* ISDN User Part CIC */ CT_IAX2, /* IAX2 call id */ CT_H223, /* H.223 logical channel number */ - CT_BICC, /* BICC Circuit identifier */ + CT_BICC /* BICC Circuit identifier */ /* Could also have ATM VPI/VCI pairs */ } circuit_type; |