Преглед изворни кода

unity: make it work with -Wconversion

Max Bruckner пре 8 година
родитељ
комит
12acc57967
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      tests/unity/src/unity.c

+ 1 - 1
tests/unity/src/unity.c

@@ -194,7 +194,7 @@ void UnityPrintNumberHex(const UNITY_UINT number, const char nibbles_to_print)
     while (nibbles > 0)
     {
         nibbles--;
-        nibble = (number >> (nibbles * 4)) & 0x0F;
+        nibble = (int)(number >> (nibbles * 4)) & 0x0F;
         if (nibble <= 9)
         {
             UNITY_OUTPUT_CHAR((char)('0' + nibble));