diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2018-02-12 00:09:40 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2018-02-12 00:09:40 +0000 |
commit | 1871af07f2858b305a658d60d542f748812178b7 (patch) | |
tree | 4ea88e8543febdab536d438e04c1d628e6a20805 /sys | |
parent | c6b3b399ffdec3ba27d9145d0b71ffbbf37d6952 (diff) |
; ends c statements, not ;;
Diffstat (limited to 'sys')
-rw-r--r-- | sys/net/if_etherip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_etherip.c b/sys/net/if_etherip.c index 133443ab20c..7a0b4bbd3bb 100644 --- a/sys/net/if_etherip.c +++ b/sys/net/if_etherip.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_etherip.c,v 1.33 2018/02/09 09:22:46 dlg Exp $ */ +/* $OpenBSD: if_etherip.c,v 1.34 2018/02/12 00:09:39 dlg Exp $ */ /* * Copyright (c) 2015 Kazuya GODA <goda@openbsd.org> * @@ -73,7 +73,7 @@ struct etherip_tunnel { sa_family_t t_af; RBT_ENTRY(etherip_tunnel) - t_entry;; + t_entry; }; RBT_HEAD(etherip_tree, etherip_tunnel); |