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:
Chris Perl 2017-03-10 08:45:41 -05:00 committed by Miroslav Lichvar
parent 10078566da
commit 3a635fc51f

View file

@ -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;
}