summaryrefslogtreecommitdiffstats
path: root/nuttx/sched/pthread_condattrdestroy.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/sched/pthread_condattrdestroy.c')
-rw-r--r--nuttx/sched/pthread_condattrdestroy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/sched/pthread_condattrdestroy.c b/nuttx/sched/pthread_condattrdestroy.c
index 8cc524ae5e..5f0991ddd3 100644
--- a/nuttx/sched/pthread_condattrdestroy.c
+++ b/nuttx/sched/pthread_condattrdestroy.c
@@ -67,14 +67,14 @@ int pthread_condattr_destroy(pthread_condattr_t *attr)
{
int ret = OK;
- dbg("attr=0x%p\n", attr);
+ sdbg("attr=0x%p\n", attr);
if (!attr)
{
ret = EINVAL;
}
- dbg("Returning %d\n", ret);
+ sdbg("Returning %d\n", ret);
return ret;
}