mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
Fixed some printf formats in the tests
This commit is contained in:
@@ -90,7 +90,7 @@ unsigned char* compileString(char* source, size_t* size) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void error(char* msg) {
|
void error(char* msg) {
|
||||||
printf(msg);
|
printf("%s", msg);
|
||||||
exit(-1);
|
exit(-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -88,7 +88,7 @@ unsigned char* compileString(char* source, size_t* size) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void error(char* msg) {
|
void error(char* msg) {
|
||||||
printf(msg);
|
printf("%s", msg);
|
||||||
exit(-1);
|
exit(-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user