summaryrefslogtreecommitdiffstats
path: root/sys/compat
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2001-12-10 08:09:49 +0000
committerobrien <obrien@FreeBSD.org>2001-12-10 08:09:49 +0000
commit7fd9a6a23abf2fb25b5925b444d0eed93c8d06f6 (patch)
treeb580d740769b3b201f76ad941e8b0b8ca3015bc0 /sys/compat
parent957a76ab241ec60b1b21124054416935dba9688b (diff)
downloadFreeBSD-src-7fd9a6a23abf2fb25b5925b444d0eed93c8d06f6.zip
FreeBSD-src-7fd9a6a23abf2fb25b5925b444d0eed93c8d06f6.tar.gz
Update to C99, s/__FUNCTION__/__func__/,
also don't use ANSI string concatenation.
Diffstat (limited to 'sys/compat')
-rw-r--r--sys/compat/linux/linux_ioctl.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/compat/linux/linux_ioctl.c b/sys/compat/linux/linux_ioctl.c
index 31cdd6a..b81c459 100644
--- a/sys/compat/linux/linux_ioctl.c
+++ b/sys/compat/linux/linux_ioctl.c
@@ -1932,7 +1932,7 @@ linux_ioctl_socket(struct thread *td, struct linux_ioctl_args *args)
int error, type;
KASSERT(LINUX_IFNAMSIZ == IFNAMSIZ,
- (__FUNCTION__ "(): LINUX_IFNAMSIZ != IFNAMSIZ"));
+ ("%s(): LINUX_IFNAMSIZ != IFNAMSIZ", __func__));
ifp = NULL;
error = 0;
@@ -1970,7 +1970,7 @@ linux_ioctl_socket(struct thread *td, struct linux_ioctl_args *args)
case LINUX_SIOCSPGRP:
/* these ioctls don't take an interface name */
#ifdef DEBUG
- printf(__FUNCTION__ "(): ioctl %d\n",
+ printf("%s(): ioctl %d\n", __func__,
args->cmd & 0xffff);
#endif
break;
@@ -1994,7 +1994,7 @@ linux_ioctl_socket(struct thread *td, struct linux_ioctl_args *args)
if (error != 0)
return (error);
#ifdef DEBUG
- printf(__FUNCTION__ "(): ioctl %d on %.*s\n",
+ printf("%s(): ioctl %d on %.*s\n", __func__,
args->cmd & 0xffff, LINUX_IFNAMSIZ, lifname);
#endif
ifp = ifname_linux_to_bsd(lifname, ifname);
@@ -2010,7 +2010,7 @@ linux_ioctl_socket(struct thread *td, struct linux_ioctl_args *args)
if (error != 0)
return (error);
#ifdef DEBUG
- printf(__FUNCTION__ "(): %s translated to %s\n",
+ printf("%s(): %s translated to %s\n", __func__,
lifname, ifname);
#endif
break;
@@ -2139,7 +2139,7 @@ linux_ioctl_socket(struct thread *td, struct linux_ioctl_args *args)
copyout(lifname, (char *)args->arg, LINUX_IFNAMSIZ);
#ifdef DEBUG
- printf(__FUNCTION__ "(): returning %d\n", error);
+ printf("%s(): returning %d\n", __func__, error);
#endif
return (error);
}
OpenPOWER on IntegriCloud