diff options
| author | pgoyette <pgoyette@NetBSD.org> | 2015-11-20 01:33:59 +0000 |
|---|---|---|
| committer | pgoyette <pgoyette@NetBSD.org> | 2015-11-20 01:33:59 +0000 |
| commit | de78bcd1f5aaeb0aab9e1eddd2873aa3340bfa9f (patch) | |
| tree | ff4b07be5593dd70752516181070c15ebf6342d4 /sys/dev/filemon | |
| parent | 823bb925d698b983f0a0565720007442348799cc (diff) | |
Remove extra ')' (bad cut&paste)
Diffstat (limited to 'sys/dev/filemon')
| -rw-r--r-- | sys/dev/filemon/filemon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/filemon/filemon.c b/sys/dev/filemon/filemon.c index 022d854a623..d9db15c5ff5 100644 --- a/sys/dev/filemon/filemon.c +++ b/sys/dev/filemon/filemon.c @@ -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 cmd, void *data) 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; } |
