diff options
author | mav <mav@FreeBSD.org> | 2013-04-07 06:47:44 +0000 |
---|---|---|
committer | mav <mav@FreeBSD.org> | 2013-04-07 06:47:44 +0000 |
commit | 7510d38d83ac10c50ffd12e288c87522e81d59f7 (patch) | |
tree | e61abc197406e335c829582728c5e761a773d2a8 /sys/cam | |
parent | a04522357c5561bcc85d1f6c366e413807aa4d77 (diff) | |
download | FreeBSD-src-7510d38d83ac10c50ffd12e288c87522e81d59f7.zip FreeBSD-src-7510d38d83ac10c50ffd12e288c87522e81d59f7.tar.gz |
Remove extra semicolons from CAM_SIM_[UN]LOCK() macros.
Diffstat (limited to 'sys/cam')
-rw-r--r-- | sys/cam/cam_sim.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/cam/cam_sim.h b/sys/cam/cam_sim.h index 93e99a5..58127ba 100644 --- a/sys/cam/cam_sim.h +++ b/sys/cam/cam_sim.h @@ -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) |