mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2026-01-25 17:31:36 +01:00
Fixed copy and paste error, changed the signature from:
void flushSpy(int c) {}
to:
void flushSpy(void) {}
This commit is contained in:
2
test/testdata/testRunnerGenerator.c
vendored
2
test/testdata/testRunnerGenerator.c
vendored
@@ -24,7 +24,7 @@
|
||||
|
||||
/* Include Passthroughs for Linking Tests */
|
||||
void putcharSpy(int c) { (void)putchar(c);}
|
||||
void flushSpy(int c) {}
|
||||
void flushSpy(void) {}
|
||||
|
||||
/* Global Variables Used During These Tests */
|
||||
int CounterSetup = 0;
|
||||
|
||||
Reference in New Issue
Block a user