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

Update Fixtures too.

This commit is contained in:
Mark VanderVoord
2016-05-06 10:55:41 -04:00
parent c5c392b18a
commit e3612e9a10
2 changed files with 2 additions and 3 deletions

View File

@@ -33,7 +33,7 @@ void UnityOutputCharSpy_Destroy(void)
free(buffer);
}
int UnityOutputCharSpy_OutputChar(int c)
void UnityOutputCharSpy_OutputChar(int c)
{
if (spy_enable)
{
@@ -44,7 +44,6 @@ int UnityOutputCharSpy_OutputChar(int c)
{
putchar(c);
}
return c;
}
const char * UnityOutputCharSpy_Get(void)