Merge pull request #27 from bjones1/master

Fix: Corrected type of size in GuardBytes to be size_t, not int.
This commit is contained in:
John Van Enk
2013-01-09 19:49:45 -08:00
+2 -2
View File
@@ -164,8 +164,8 @@ void UnityMalloc_MakeMallocFailAfterCount(int countdown)
typedef struct GuardBytes
{
int size;
char guard[sizeof(int)];
size_t size;
char guard[sizeof(size_t)];
} Guard;