From 13e2db94a7e38aaeab99dd73b2a914ea0771ea24 Mon Sep 17 00:00:00 2001 From: rzalamena Date: Thu, 17 Nov 2016 16:24:00 +0000 Subject: Fix some styles issues: break big lines and remove some useless spaces. --- usr.sbin/switchd/ofp10.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'usr.sbin/switchd/ofp10.c') diff --git a/usr.sbin/switchd/ofp10.c b/usr.sbin/switchd/ofp10.c index 5679506f07c..80d350cc73a 100644 --- a/usr.sbin/switchd/ofp10.c +++ b/usr.sbin/switchd/ofp10.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ofp10.c,v 1.13 2016/11/11 22:07:40 reyk Exp $ */ +/* $OpenBSD: ofp10.c,v 1.14 2016/11/17 16:24:00 rzalamena Exp $ */ /* * Copyright (c) 2013-2016 Reyk Floeter @@ -305,7 +305,8 @@ ofp10_packet_match(struct packet *pkt, struct ofp10_match *m, uint32_t flags) bzero(m, sizeof(*m)); m->m_wildcards = htonl(~flags); - if ((flags & (OFP10_WILDCARD_DL_SRC|OFP10_WILDCARD_DL_DST)) && (eh == NULL)) + if ((flags & (OFP10_WILDCARD_DL_SRC|OFP10_WILDCARD_DL_DST)) && + (eh == NULL)) return (-1); if (flags & OFP10_WILDCARD_DL_SRC) -- cgit v1.2.3-59-g8ed1b