mirror of
https://gitlab.com/chrony/chrony.git
synced 2025-12-03 21:05:06 -05:00
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:
committed by
Miroslav Lichvar
parent
10078566da
commit
3a635fc51f
@@ -807,7 +807,7 @@ SST_IsGoodSample(SST_Stats inst, double offset, double delay,
|
|||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
DEBUG_LOG("Bad sample: offset=%f delay=%f incr_delay=%f allowed=%f",
|
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;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user