Fixed some printf formats in the tests

This commit is contained in:
2022-11-12 03:26:14 +00:00
parent 30b068fcdb
commit 2d18ff4ba3
2 changed files with 2 additions and 2 deletions

View File

@@ -90,7 +90,7 @@ unsigned char* compileString(char* source, size_t* size) {
}
void error(char* msg) {
printf(msg);
printf("%s", msg);
exit(-1);
}

View File

@@ -88,7 +88,7 @@ unsigned char* compileString(char* source, size_t* size) {
}
void error(char* msg) {
printf(msg);
printf("%s", msg);
exit(-1);
}