summaryrefslogtreecommitdiff
path: root/nuttx/sched/pthread_condinit.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/sched/pthread_condinit.c')
-rw-r--r--nuttx/sched/pthread_condinit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/sched/pthread_condinit.c b/nuttx/sched/pthread_condinit.c
index 9dac4692f..90ee12782 100644
--- a/nuttx/sched/pthread_condinit.c
+++ b/nuttx/sched/pthread_condinit.c
@@ -67,7 +67,7 @@ int pthread_cond_init(pthread_cond_t *cond, pthread_condattr_t *attr)
{
int ret = OK;
- dbg("%s: cond=0x%p attr=0x%p\n", __FUNCTION__, cond, attr);
+ dbg("cond=0x%p attr=0x%p\n", cond, attr);
if (!cond)
{
@@ -83,7 +83,7 @@ int pthread_cond_init(pthread_cond_t *cond, pthread_condattr_t *attr)
ret = EINVAL;
}
- dbg("%s: Returning %d\n", __FUNCTION__, ret);
+ dbg("Returning %d\n", ret);
return ret;
}