remove trailing semi-colons from macro definitions.
This commit is contained in:
parent
9f34c41601
commit
012b7109b9
@ -99,8 +99,8 @@ struct uidinfo {
|
||||
struct mtx *ui_mtxp; /* protect all counts/limits */
|
||||
};
|
||||
|
||||
#define UIDINFO_LOCK(ui) mtx_lock((ui)->ui_mtxp);
|
||||
#define UIDINFO_UNLOCK(ui) mtx_unlock((ui)->ui_mtxp);
|
||||
#define UIDINFO_LOCK(ui) mtx_lock((ui)->ui_mtxp)
|
||||
#define UIDINFO_UNLOCK(ui) mtx_unlock((ui)->ui_mtxp)
|
||||
|
||||
struct thread;
|
||||
struct kse;
|
||||
|
Loading…
Reference in New Issue
Block a user