Module Name: src
Committed By: pgoyette
Date: Fri Nov 20 01:33:59 UTC 2015
Modified Files:
src/sys/dev/filemon: filemon.c
Log Message:
Remove extra ')' (bad cut&paste)
To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/sys/dev/filemon/filemon.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/filemon/filemon.c
diff -u src/sys/dev/filemon/filemon.c:1.13 src/sys/dev/filemon/filemon.c:1.14
--- src/sys/dev/filemon/filemon.c:1.13 Fri Nov 20 01:21:05 2015
+++ src/sys/dev/filemon/filemon.c Fri Nov 20 01:33:59 2015
@@ -24,7 +24,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: filemon.c,v 1.13 2015/11/20 01:21:05 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: filemon.c,v 1.14 2015/11/20 01:33:59 pgoyette Exp $");
#include <sys/param.h>
#include <sys/kernel.h>
@@ -309,7 +309,7 @@ filemon_ioctl(struct file * fp, u_long c
tp = proc_find(*((pid_t *) data));
mutex_exit(proc_lock);
if (tp == NULL ||
- tp->p_emul != &emul_netbsd)) {
+ tp->p_emul != &emul_netbsd) {
error = ESRCH;
break;
}