Skip to content

Commit 15efa02

Browse files
committed
Fix IO warning
1 parent 34f0fd9 commit 15efa02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Libs/Runtimes/Std/Src/IO.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ extern "C"
99
{
1010
void Print(const char* text)
1111
{
12-
printf(text);
12+
printf("%s", text);
1313
}
1414

1515
void PrintHelloWorld()

0 commit comments

Comments
 (0)