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