From ec914adf6b05c2a6b32a0adb4c8f814728b0cbc3 Mon Sep 17 00:00:00 2001 From: Robert Watson Date: Thu, 8 Jun 2006 21:55:39 +0000 Subject: [PATCH] Prefer C to C++ comments per style(9). Perforce CID: 98826 Obtained from: TrustedBSD Project --- sys/security/audit/audit_trigger.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/security/audit/audit_trigger.c b/sys/security/audit/audit_trigger.c index 44b6de3f171..52f67cd7832 100644 --- a/sys/security/audit/audit_trigger.c +++ b/sys/security/audit/audit_trigger.c @@ -59,7 +59,7 @@ audit_open(struct cdev *dev, int oflags, int devtype, struct thread *td) { int error; - // Only one process may open the device at a time + /* Only one process may open the device at a time. */ mtx_lock(&audit_trigger_mtx); if (!audit_isopen) { error = 0;