Remove extra semicolons from CAM_SIM_[UN]LOCK() macros.

This commit is contained in:
mav 2013-04-07 06:47:44 +00:00
parent a04522357c
commit 7510d38d83

View File

@ -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)