Skip to content

Commit

Permalink
fix(server): rm prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Molaryy committed Jun 22, 2024
1 parent f829d94 commit 1869a3c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/server/src/commands/message_to_graphicals.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ void message_to_graphicals(server_t *server, char *fmt, ...)
TAILQ_FOREACH(client, &server->clients, entries) {
if (client->client && client->client->is_graphic) {
va_start(args, fmt);
printf("FD: [%d]\n", client->client->fd);
vdprintf(client->client->fd, fmt, args);
printf("FMT\n");
va_end(args);
}
}
Expand Down

0 comments on commit 1869a3c

Please sign in to comment.