From 53c99d6a7a7d20da5ee21f1ae216a0ffd938feff Mon Sep 17 00:00:00 2001 From: rusEfi Date: Tue, 6 Dec 2016 00:02:47 -0500 Subject: [PATCH] auto-sync --- firmware/controllers/math/engine_math.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/controllers/math/engine_math.cpp b/firmware/controllers/math/engine_math.cpp index e74b39b4b8..9bc25e237f 100644 --- a/firmware/controllers/math/engine_math.cpp +++ b/firmware/controllers/math/engine_math.cpp @@ -217,7 +217,7 @@ floatms_t getSparkDwell(int rpm DECLARE_ENGINE_PARAMETER_S) { } if (cisnan(dwellMs) || dwellMs < 0) { - firmwareError(CUSTOM_ERR_DWELL_DURATION, "invalid dwell: %f at %d", dwellMs, rpm); + firmwareError(CUSTOM_ERR_DWELL_DURATION, "invalid dwell: %f at rpm=%d", dwellMs, rpm); } return dwellMs; }