From: Sascha Wildner Date: Sat, 17 Dec 2011 14:53:51 +0000 (+0100) Subject: sym(4): Remove excessive semicolons. X-Git-Tag: v3.0.0~362 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/d518ee10ca3d447735e4c99c448252402c60347b sym(4): Remove excessive semicolons. They are provided by the macro definition. This is the same what FreeBSD did in r118472. --- diff --git a/sys/dev/disk/sym/sym_fw.h b/sys/dev/disk/sym/sym_fw.h index 15fa0bd8b5..d14b044a41 100644 --- a/sys/dev/disk/sym/sym_fw.h +++ b/sys/dev/disk/sym/sym_fw.h @@ -56,7 +56,6 @@ */ /* $FreeBSD: src/sys/dev/sym/sym_fw.h,v 1.1.2.2 2001/11/11 17:58:53 groudier Exp $ */ -/* $DragonFly: src/sys/dev/disk/sym/sym_fw.h,v 1.2 2003/06/17 04:28:31 dillon Exp $ */ #ifndef SYM_FW_H #define SYM_FW_H @@ -107,8 +106,8 @@ struct sym_fwa_ofs { }; struct sym_fwb_ofs { SYM_GEN_FW_B(u_short) - SYM_GEN_B(u_short, start64); - SYM_GEN_B(u_short, pm_handle); + SYM_GEN_B(u_short, start64) + SYM_GEN_B(u_short, pm_handle) }; /* @@ -120,8 +119,8 @@ struct sym_fwa_ba { }; struct sym_fwb_ba { SYM_GEN_FW_B(u32) - SYM_GEN_B(u32, start64); - SYM_GEN_B(u32, pm_handle); + SYM_GEN_B(u32, start64) + SYM_GEN_B(u32, pm_handle) }; #undef SYM_GEN_A #undef SYM_GEN_B