Skip to content

Commit 69b6561

Browse files
oe1rsarjonaitis
authored andcommitted
Fix wrong arg order in debug log message
1 parent 253b67d commit 69b6561

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/threadHelper/threadHelper.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ int lime::SetOSThreadPriority(ThreadPriority priority, ThreadPolicy policy, std:
5555
{
5656
lime::debug("SetOSThreadPriority: Failed to set priority(%d), sched_prio(%d), policy(%d), ret(%d)",
5757
static_cast<int>(priority),
58+
sch.sched_priority,
5859
sched_policy,
59-
ret,
60-
sch.sched_priority);
60+
ret);
6161
return -1;
6262
}
6363

0 commit comments

Comments
 (0)