summaryrefslogtreecommitdiffstats
path: root/nuttx/sched/pthread_attrdestroy.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/sched/pthread_attrdestroy.c')
-rw-r--r--nuttx/sched/pthread_attrdestroy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/sched/pthread_attrdestroy.c b/nuttx/sched/pthread_attrdestroy.c
index 9bb86268c6..c71fa6271f 100644
--- a/nuttx/sched/pthread_attrdestroy.c
+++ b/nuttx/sched/pthread_attrdestroy.c
@@ -89,7 +89,7 @@ int pthread_attr_destroy(pthread_attr_t *attr)
{
int ret;
- dbg("%s: attr=0x%p\n", __FUNCTION__, attr);
+ dbg("attr=0x%p\n", attr);
if (!attr)
{
@@ -101,7 +101,7 @@ int pthread_attr_destroy(pthread_attr_t *attr)
ret = OK;
}
- dbg("%s: Returning %d\n", __FUNCTION__, ret);
+ dbg("Returning %d\n", ret);
return ret;
}