summaryrefslogtreecommitdiff
path: root/nuttx/sched/pthread_condbroadcast.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/sched/pthread_condbroadcast.c')
-rw-r--r--nuttx/sched/pthread_condbroadcast.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/sched/pthread_condbroadcast.c b/nuttx/sched/pthread_condbroadcast.c
index 1fd129248..307f2ceb1 100644
--- a/nuttx/sched/pthread_condbroadcast.c
+++ b/nuttx/sched/pthread_condbroadcast.c
@@ -89,7 +89,7 @@ int pthread_cond_broadcast(pthread_cond_t *cond)
int ret = OK;
int sval;
- dbg("cond=0x%p\n", cond);
+ sdbg("cond=0x%p\n", cond);
if (!cond)
{
@@ -135,7 +135,7 @@ int pthread_cond_broadcast(pthread_cond_t *cond)
sched_unlock();
}
- dbg("Returning %d\n", ret);
+ sdbg("Returning %d\n", ret);
return ret;
}