1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

Prefer C to C++ comments per style(9).

Perforce CID:	98826
Obtained from:	TrustedBSD Project
This commit is contained in:
Robert Watson 2006-06-08 21:55:39 +00:00
parent 190cb52795
commit ec914adf6b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=159414

View File

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