From ee038c248cb1a764dd5376b01ed0065c2a4c66c0 Mon Sep 17 00:00:00 2001 From: Mark VanderVoord Date: Sun, 26 Mar 2017 18:30:22 -0400 Subject: [PATCH] Ha! Forgot to add the correct comment style --- src/unity.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unity.c b/src/unity.c index 05f463d..177af0f 100644 --- a/src/unity.c +++ b/src/unity.c @@ -1187,7 +1187,7 @@ UNITY_INTERNAL_PTR UnityNumToPtr(const UNITY_INT num, const UNITY_UINT8 size) UnityQuickCompare.i64 = (UNITY_INT64)num; return (UNITY_INTERNAL_PTR)(&UnityQuickCompare.i64); #endif - default: //4 bytes + default: /* 4 bytes */ UnityQuickCompare.i32 = (UNITY_INT32)num; return (UNITY_INTERNAL_PTR)(&UnityQuickCompare.i32); } -- GitLab