From 3d1f3a5a002344917cf6e583546cb3fc1fa9ccf1 Mon Sep 17 00:00:00 2001 From: John Van Enk Date: Mon, 1 Oct 2012 17:31:40 -0400 Subject: [PATCH] Fully expand Unity struct. --- src/unity.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unity.c b/src/unity.c index a8e1476..0219b37 100644 --- a/src/unity.c +++ b/src/unity.c @@ -14,7 +14,7 @@ #define UNITY_SKIP_EXECUTION { if ((Unity.CurrentTestFailed != 0) || (Unity.CurrentTestIgnored != 0)) {return;} } #define UNITY_PRINT_EOL { UNITY_OUTPUT_CHAR('\n'); } -struct _Unity Unity = { 0 }; +struct _Unity Unity = { 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , { 0 } }; const char* UnityStrNull = "NULL"; const char* UnityStrSpacer = ". ";