Skip to content

Commit

Permalink
fprintf fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tophyr committed Dec 27, 2024
1 parent 1913198 commit 162e66a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linux/lnxcon_raw.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,6 @@ void con_raw_Destroy() {

// put some data up on the screen
void con_raw_Puts(int window, const char *str) {
fprintf(stdout, str);
fprintf(stdout, "%s", str);
fflush(stdout);
}

0 comments on commit 162e66a

Please sign in to comment.