diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2017-08-06 13:23:13 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2017-08-06 13:23:13 +0000 |
commit | e292c8dce66732da1c180a05eab43bddf9d2cebc (patch) | |
tree | f5af6046607024a45a2028e1433ba4071b77a2fe /usr.sbin | |
parent | 9103069faf13baea09b4c2b89b0865883a330ec7 (diff) |
Remove comma from last element since that is the terminator.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/bgpd/bgpd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/bgpd.h b/usr.sbin/bgpd/bgpd.h index 6012d9d2537..5bd970789f6 100644 --- a/usr.sbin/bgpd/bgpd.h +++ b/usr.sbin/bgpd/bgpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpd.h,v 1.310 2017/08/06 12:28:31 benno Exp $ */ +/* $OpenBSD: bgpd.h,v 1.311 2017/08/06 13:23:12 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -818,7 +818,7 @@ struct ext_comm_pairs { { EXT_COMMUNITY_TRANS_EVPN, 0x01, "esi-lab" }, \ { EXT_COMMUNITY_TRANS_EVPN, 0x02, "esi-rt" }, \ \ - { 0 }, \ + { 0 } \ } extern const struct ext_comm_pairs iana_ext_comms[]; |