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