From 474a3796c9037cb9a5a2ee218aeae6f3c5e3cc89 Mon Sep 17 00:00:00 2001 From: dds Date: Tue, 5 Aug 2003 07:22:12 +0000 Subject: [PATCH] Remove extraneous semicolons. They are already provided by the macro definition, and cause the generation of syntactically incorrect code that gcc happens to accept. Reviewed by: schweikh (mentor) MFC after: 4 weeks --- sys/dev/sym/sym_fw.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/dev/sym/sym_fw.h b/sys/dev/sym/sym_fw.h index 2f69231ce37a..65b2838bb3d6 100644 --- a/sys/dev/sym/sym_fw.h +++ b/sys/dev/sym/sym_fw.h @@ -106,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) }; /* @@ -119,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