MFC r198945:

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>
This commit is contained in:
netchild 2009-11-12 13:09:36 +00:00
parent 1592a5fa11
commit 7d866ac606

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