summaryrefslogtreecommitdiffstats
path: root/sys/ia64
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2002-03-12 00:17:45 +0000
committerpeter <peter@FreeBSD.org>2002-03-12 00:17:45 +0000
commit3e0ebce93d999260a994ab623d07f1f64b0b6dd9 (patch)
tree2f5c2065a1f6e2617a3972a0a85cf3c039a8f75d /sys/ia64
parent49ade32a5cc63355ff8a4813402e463eb57644eb (diff)
downloadFreeBSD-src-3e0ebce93d999260a994ab623d07f1f64b0b6dd9.zip
FreeBSD-src-3e0ebce93d999260a994ab623d07f1f64b0b6dd9.tar.gz
Stop concatenating __func__ with strings
Diffstat (limited to 'sys/ia64')
-rw-r--r--sys/ia64/ia64/machdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ia64/ia64/machdep.c b/sys/ia64/ia64/machdep.c
index 35b3f37..05cf4d0 100644
--- a/sys/ia64/ia64/machdep.c
+++ b/sys/ia64/ia64/machdep.c
@@ -253,7 +253,7 @@ void
cpu_pcpu_init(struct pcpu *pcpu, int cpuid, size_t size)
{
KASSERT(size >= sizeof(struct pcpu) + sizeof(struct pcb),
- (__func__ ": too small an allocation for pcpu"));
+ ("%s: too small an allocation for pcpu", __func__));
pcpu->pc_pcb = (void*)(pcpu+1);
}
@@ -452,7 +452,7 @@ ia64_init(u_int64_t arg1, u_int64_t arg2)
}
KASSERT(ia64_port_base != 0,
- (__func__ ": no I/O memory region"));
+ ("%s: no I/O memory region", __func__));
/*
* Look at arguments passed to us and compute boothowto.
OpenPOWER on IntegriCloud