summaryrefslogtreecommitdiffstats
path: root/nuttx/sched/pthread_mutexdestroy.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/sched/pthread_mutexdestroy.c')
-rw-r--r--nuttx/sched/pthread_mutexdestroy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/sched/pthread_mutexdestroy.c b/nuttx/sched/pthread_mutexdestroy.c
index 14b5727c05..e894f81aee 100644
--- a/nuttx/sched/pthread_mutexdestroy.c
+++ b/nuttx/sched/pthread_mutexdestroy.c
@@ -90,7 +90,7 @@ int pthread_mutex_destroy(pthread_mutex_t *mutex)
int ret = OK;
int status;
- dbg("mutex=0x%p\n", mutex);
+ sdbg("mutex=0x%p\n", mutex);
if (!mutex)
{
@@ -123,6 +123,6 @@ int pthread_mutex_destroy(pthread_mutex_t *mutex)
sched_unlock();
}
- dbg("Returning %d\n", ret);
+ sdbg("Returning %d\n", ret);
return ret;
}