From f3d62ac43dbafeef31f1de75fc40131cbb5657e6 Mon Sep 17 00:00:00 2001 From: Alexander Leidinger Date: Thu, 5 Nov 2009 07:37:48 +0000 Subject: [PATCH] Fix typo in kernel message. The fix is based upon the patch in the PR. PR: kern/140279 Submitted by: Alexander Best MFC after: 1 week --- sys/compat/linux/linux_ipc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/compat/linux/linux_ipc.c b/sys/compat/linux/linux_ipc.c index 0a46a058bfd..fbec94e9dd4 100644 --- a/sys/compat/linux/linux_ipc.c +++ b/sys/compat/linux/linux_ipc.c @@ -872,7 +872,7 @@ linux_shmctl(struct thread *td, struct linux_shmctl_args *args) case LINUX_SHM_LOCK: case LINUX_SHM_UNLOCK: default: - linux_msg(td, "ipc typ=%d not implemented", args->cmd & ~LINUX_IPC_64); + linux_msg(td, "ipc type %d not implemented", args->cmd & ~LINUX_IPC_64); return EINVAL; } }