From d518ee10ca3d447735e4c99c448252402c60347b Mon Sep 17 00:00:00 2001 From: Sascha Wildner Date: Sat, 17 Dec 2011 15:53:51 +0100 Subject: [PATCH] sym(4): Remove excessive semicolons. They are provided by the macro definition. This is the same what FreeBSD did in r118472. --- sys/dev/disk/sym/sym_fw.h | 9 ++++----- 1 files changed, 4 insertions(+), 5 deletions(-) diff --git a/sys/dev/disk/sym/sym_fw.h b/sys/dev/disk/sym/sym_fw.h index 15fa0bd..d14b044 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 -- 1.7.7.2