Module Name: src Committed By: rillig Date: Thu Feb 27 20:11:12 UTC 2025
Modified Files: src/sbin/routed: radix.h Log Message: routed: remove extra semicolon at the end of a function-like macro No binary change. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/sbin/routed/radix.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sbin/routed/radix.h diff -u src/sbin/routed/radix.h:1.6 src/sbin/routed/radix.h:1.7 --- src/sbin/routed/radix.h:1.6 Sat Feb 5 13:47:19 2005 +++ src/sbin/routed/radix.h Thu Feb 27 20:11:12 2025 @@ -1,4 +1,4 @@ -/* $NetBSD: radix.h,v 1.6 2005/02/05 13:47:19 xtraeme Exp $ */ +/* $NetBSD: radix.h,v 1.7 2025/02/27 20:11:12 rillig Exp $ */ /* * Copyright (c) 1988, 1989, 1993 @@ -138,7 +138,7 @@ struct radix_node_head { #define Bcmp(a, b, n) memcmp(((void *)(a)), ((void *)(b)), (n)) #define Bcopy(a, b, n) memmove(((void *)(b)), ((void *)(a)), (size_t)(n)) -#define Bzero(p, n) memset((void *)(p), 0, (size_t)(n)); +#define Bzero(p, n) memset((void *)(p), 0, (size_t)(n)) #define Free(p) free((void *)p); void rn_init(void);