summaryrefslogtreecommitdiff
path: root/nuttx/sched/pthread_attrsetschedparam.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/sched/pthread_attrsetschedparam.c')
-rw-r--r--nuttx/sched/pthread_attrsetschedparam.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/sched/pthread_attrsetschedparam.c b/nuttx/sched/pthread_attrsetschedparam.c
index c9660c31c..ab0bfacfd 100644
--- a/nuttx/sched/pthread_attrsetschedparam.c
+++ b/nuttx/sched/pthread_attrsetschedparam.c
@@ -90,7 +90,7 @@ int pthread_attr_setschedparam(pthread_attr_t *attr,
{
int ret;
- dbg("attr=0x%p param=0x%p\n", attr, param);
+ sdbg("attr=0x%p param=0x%p\n", attr, param);
if (!attr || !param)
{
@@ -101,7 +101,7 @@ int pthread_attr_setschedparam(pthread_attr_t *attr,
attr->priority = (short)param->sched_priority;
ret = OK;
}
- dbg("Returning %d\n", ret);
+ sdbg("Returning %d\n", ret);
return ret;
}