diff options
author | Alfred Perlstein <alfred@FreeBSD.org> | 2003-01-02 02:19:10 +0000 |
---|---|---|
committer | Alfred Perlstein <alfred@FreeBSD.org> | 2003-01-02 02:19:10 +0000 |
commit | e15583ce201e83b844d98e20859ca8f73e9c6103 (patch) | |
tree | 99826f563971bf97a7c515ce2142bc0961221917 /sys/compat/linux/linux_ioctl.c | |
parent | 82e10e2428f1b8d70312f011023f1a790addad0e (diff) |
Notes
Diffstat (limited to 'sys/compat/linux/linux_ioctl.c')
-rw-r--r-- | sys/compat/linux/linux_ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/compat/linux/linux_ioctl.c b/sys/compat/linux/linux_ioctl.c index 186b84c8e0f0..9f10ba5152fe 100644 --- a/sys/compat/linux/linux_ioctl.c +++ b/sys/compat/linux/linux_ioctl.c @@ -2395,7 +2395,7 @@ linux_ioctl(struct thread *td, struct linux_ioctl_args *args) } fdrop(fp, td); - printf("linux: 'ioctl' fd=%d, cmd=0x%x ('%c',%d) not implemented\n", + linux_msg(td, "ioctl fd=%d, cmd=0x%x ('%c',%d) is not implemented", args->fd, (int)(args->cmd & 0xffff), (int)(args->cmd & 0xff00) >> 8, (int)(args->cmd & 0xff)); |