use unary minus on the incoming int instead of the casted uint

This commit is contained in:
Alexander Brevig
2019-03-12 00:17:37 +01:00
parent 1fb4108590
commit df6af0ef7e
+1 -1
View File
@@ -321,7 +321,7 @@ void UnityPrintNumber(const UNITY_INT number_to_print)
{
/* A negative number, including MIN negative */
UNITY_OUTPUT_CHAR('-');
number = -number;
number = (UNITY_UINT)-number_to_print;
}
UnityPrintNumberUnsigned(number);
}