From 7cc3cf478bfae76b516f245ac3e5ff12f09f3ef4 Mon Sep 17 00:00:00 2001 From: Levin Messing Date: Thu, 18 Oct 2018 23:55:38 +0200 Subject: [PATCH] fixed compile error UNITY_PRINT_EXEC_TIME() --- src/unity_internals.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unity_internals.h b/src/unity_internals.h index 4c55ef8..7249fc7 100644 --- a/src/unity_internals.h +++ b/src/unity_internals.h @@ -323,7 +323,7 @@ typedef UNITY_FLOAT_TYPE UNITY_FLOAT; #ifdef UNITY_INCLUDE_EXEC_TIME #define UNITY_PRINT_EXEC_TIME() \ UnityPrint(" (");\ - UNITY_COUNTER_TYPE execTimeMs = (Unity.CurrentTestStopTime - Unity.CurrentTestStartTime); + UNITY_COUNTER_TYPE execTimeMs = (Unity.CurrentTestStopTime - Unity.CurrentTestStartTime);\ UnityPrintNumberUnsigned(execTimeMs);\ UnityPrint(" ms)"); #else