Skip to content

Commit

Permalink
Replace printf with puts in ir-server.c:77, based on Valgrind
Browse files Browse the repository at this point in the history
  • Loading branch information
mesheets authored Feb 19, 2025
1 parent 8dcaf82 commit 25b76a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ir-server.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ int main() {
return 1;
}
listen(sockets[0], 10);
printf("Server started.\n");
puts("Server started.");
if (fork())
return 0;

Expand Down

0 comments on commit 25b76a5

Please sign in to comment.