remove trailing semi-colons from macro definitions.

This commit is contained in:
Alfred Perlstein 2002-02-27 02:02:13 +00:00
parent 9f34c41601
commit 012b7109b9

View File

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