Author: mav Date: Sun Apr 7 06:47:44 2013 New Revision: 249224 URL: http://svnweb.freebsd.org/changeset/base/249224
Log: Remove extra semicolons from CAM_SIM_[UN]LOCK() macros. Modified: head/sys/cam/cam_sim.h Modified: head/sys/cam/cam_sim.h ============================================================================== --- head/sys/cam/cam_sim.h Sun Apr 7 05:53:42 2013 (r249223) +++ head/sys/cam/cam_sim.h Sun Apr 7 06:47:44 2013 (r249224) @@ -123,8 +123,8 @@ struct cam_sim { }; -#define CAM_SIM_LOCK(sim) mtx_lock((sim)->mtx); -#define CAM_SIM_UNLOCK(sim) mtx_unlock((sim)->mtx); +#define CAM_SIM_LOCK(sim) mtx_lock((sim)->mtx) +#define CAM_SIM_UNLOCK(sim) mtx_unlock((sim)->mtx) static __inline u_int32_t cam_sim_path(struct cam_sim *sim) _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"