From 3a635fc51fd62af6bc2a648afb67f7123c0151d3 Mon Sep 17 00:00:00 2001 From: Chris Perl Date: Fri, 10 Mar 2017 08:45:41 -0500 Subject: [PATCH] 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. --- sourcestats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sourcestats.c b/sourcestats.c index c216e03..d3dea69 100644 --- a/sourcestats.c +++ b/sourcestats.c @@ -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; }