1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-27 18:24:27 +01:00

Fix additional primitive type conversion warnings on Linux

Using gcc 4.8 on Ubuntu 14
This commit is contained in:
jsalling
2016-02-23 14:46:52 -06:00
parent 7fff3fc034
commit 3faa143f21
3 changed files with 3 additions and 3 deletions

View File

@@ -158,7 +158,7 @@ void UnityMalloc_MakeMallocFailAfterCount(int countdown)
#ifdef UNITY_EXCLUDE_STDLIB_MALLOC
static unsigned char unity_heap[UNITY_INTERNAL_HEAP_SIZE_BYTES];
static unsigned int heap_index;
static size_t heap_index;
#else
#include <stdlib.h>
#endif