sourcestats: reorder arguments to DEBUG_LOG in SST_IsGoodSample
The delay_increase and allowed_increase variables are backwards with respect to the ordering of the words in the message.
This commit is contained in:
parent
10078566da
commit
3a635fc51f
1 changed files with 1 additions and 1 deletions
|
@ -807,7 +807,7 @@ SST_IsGoodSample(SST_Stats inst, double offset, double delay,
|
|||
return 1;
|
||||
|
||||
DEBUG_LOG("Bad sample: offset=%f delay=%f incr_delay=%f allowed=%f",
|
||||
offset, delay, allowed_increase, delay_increase);
|
||||
offset, delay, delay_increase, allowed_increase);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue