aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorAlfred Perlstein <alfred@FreeBSD.org>2002-02-27 02:02:13 +0000
committerAlfred Perlstein <alfred@FreeBSD.org>2002-02-27 02:02:13 +0000
commit012b7109b91e8572e065ac3d828bb3eefcdfa893 (patch)
tree137017035955390ffbf8d19117d7b0bd09acdb7e /sys
parent9f34c4160165580d364e39b899d33470fcbaacbd (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/resourcevar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/resourcevar.h b/sys/sys/resourcevar.h
index 30b4a4bdcaba9..aa7cbf91a5571 100644
--- a/sys/sys/resourcevar.h
+++ b/sys/sys/resourcevar.h
@@ -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;