summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/dev/acpica/Osd/OsdSchedule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/acpica/Osd/OsdSchedule.c b/sys/dev/acpica/Osd/OsdSchedule.c
index d5ba111..e3aebc2 100644
--- a/sys/dev/acpica/Osd/OsdSchedule.c
+++ b/sys/dev/acpica/Osd/OsdSchedule.c
@@ -271,6 +271,6 @@ AcpiOsGetThreadId (void)
{
/* XXX do not add FUNCTION_TRACE here, results in recursive call */
- KASSERT(curproc != NULL, (__func__ ": curproc is NULL!"));
+ KASSERT(curproc != NULL, ("%s: curproc is NULL!", __func__));
return(curproc->p_pid + 1); /* can't return 0 */
}
OpenPOWER on IntegriCloud