summaryrefslogtreecommitdiff
path: root/nuttx/sched/pthread_mutexattrdestroy.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/sched/pthread_mutexattrdestroy.c')
-rw-r--r--nuttx/sched/pthread_mutexattrdestroy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/sched/pthread_mutexattrdestroy.c b/nuttx/sched/pthread_mutexattrdestroy.c
index 8e3abdb47..a61b60c87 100644
--- a/nuttx/sched/pthread_mutexattrdestroy.c
+++ b/nuttx/sched/pthread_mutexattrdestroy.c
@@ -88,7 +88,7 @@ int pthread_mutexattr_destroy(pthread_mutexattr_t *attr)
{
int ret = OK;
- dbg("%s: attr=0x%p\n", __FUNCTION__, attr);
+ dbg("attr=0x%p\n", attr);
if (!attr)
{
@@ -99,6 +99,6 @@ int pthread_mutexattr_destroy(pthread_mutexattr_t *attr)
attr->pshared = 0;
}
- dbg("%s: Returning %d\n", __FUNCTION__, ret);
+ dbg("Returning %d\n", ret);
return ret;
}