Module Name: src Committed By: rillig Date: Sun Jan 16 10:45:17 UTC 2022
Modified Files: src/sys/net/lagg: if_lagg_lacp.c Log Message: lagg: remove stray semicolon No binary change. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/sys/net/lagg/if_lagg_lacp.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/net/lagg/if_lagg_lacp.c diff -u src/sys/net/lagg/if_lagg_lacp.c:1.12 src/sys/net/lagg/if_lagg_lacp.c:1.13 --- src/sys/net/lagg/if_lagg_lacp.c:1.12 Wed Jan 12 08:23:53 2022 +++ src/sys/net/lagg/if_lagg_lacp.c Sun Jan 16 10:45:17 2022 @@ -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_ 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"); }