1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-02-06 18:29:47 +00:00

Fix typo in kernel message. The fix is based upon the patch in the PR.

PR:		kern/140279
Submitted by:	Alexander Best <alexbestms@math.uni-muenster.de>
MFC after:	1 week
This commit is contained in:
Alexander Leidinger 2009-11-05 07:37:48 +00:00
parent 4590f2282a
commit f3d62ac43d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=198945

View File

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