diff options
| author | rillig <rillig@NetBSD.org> | 2022-01-16 10:45:17 +0000 |
|---|---|---|
| committer | rillig <rillig@NetBSD.org> | 2022-01-16 10:45:17 +0000 |
| commit | 035a20e481a2f755d2bd9184dfc4dd9944cd48b3 (patch) | |
| tree | 9082846903ddd67b037605a27a3dee299110f16a /sys/net | |
| parent | 8f7a89c65cc6c9769e67b8dc2aaab4548d238783 (diff) | |
lagg: remove stray semicolon
No binary change.
Diffstat (limited to 'sys/net')
| -rw-r--r-- | sys/net/lagg/if_lagg_lacp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/lagg/if_lagg_lacp.c b/sys/net/lagg/if_lagg_lacp.c index db296fd2ff6..7d812d5c64b 100644 --- a/sys/net/lagg/if_lagg_lacp.c +++ b/sys/net/lagg/if_lagg_lacp.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_lagg_lacp.c,v 1.12 2022/01/12 08:23:53 yamaguchi Exp $ */ +/* $NetBSD: if_lagg_lacp.c,v 1.13 2022/01/16 10:45:17 rillig Exp $ */ /*- * SPDX-License-Identifier: BSD-2-Clause-NetBSD @@ -31,7 +31,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_lagg_lacp.c,v 1.12 2022/01/12 08:23:53 yamaguchi Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_lagg_lacp.c,v 1.13 2022/01/16 10:45:17 rillig Exp $"); #ifdef _KERNEL_OPT #include "opt_lagg.h" @@ -2542,7 +2542,7 @@ lacp_dump_lacpdutlv(const struct lacpdu_peerinfo *pi_actor, printf("actor.state=%s portno=%d portprio=0x%04x\n", str, ntohs(pi_actor->lpi_port_no), - ntohs(pi_actor->lpi_port_prio));; + ntohs(pi_actor->lpi_port_prio)); } else { printf("no actor info\n"); } |
