remove trailing semi-colons from macro definitions.

This commit is contained in:
alfred 2002-02-27 02:02:13 +00:00
parent 8718c47431
commit cc8622fa94

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;