fix warning error.

git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@806 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
This commit is contained in:
smorlat 2010-01-05 15:41:42 +00:00
parent 05eff701a8
commit daf8045858

View file

@ -296,7 +296,7 @@ static int set_high_prio(void){
int policy=SCHED_OTHER;
#endif
param.sched_priority=sched_get_priority_max(policy);
if(result=pthread_setschedparam(pthread_self(),policy, &param)) {
if((result=pthread_setschedparam(pthread_self(),policy, &param))) {
ms_warning("Set sched param failed with error code(%i)\n",result);
} else {
ms_message("MS ticker priority set to max");