From fda282f491c41e5e02795a1c7b43fcc8d908af67 Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Wed, 19 Apr 2023 12:00:53 +0200 Subject: [PATCH] removed inappropriate debug prints pls don't view the changes for love of god --- src/chat/misc.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/chat/misc.c b/src/chat/misc.c index 6160ad4..d2cec01 100644 --- a/src/chat/misc.c +++ b/src/chat/misc.c @@ -264,7 +264,6 @@ void *stop_oldest_thread(void *id) { sleep(WHY2_COMMUNICATION_TIME); //yk wait if (waiting_list.head == NULL) return NULL; - printf("A\n"); if (**(pthread_t**) waiting_list.head -> value == *(pthread_t*) id) //THREAD IS STILL ALIVE, I HOPE { //KILL THE THREAD @@ -323,7 +322,6 @@ void why2_send_socket(char *text, char *username, int socket) why2_deallocate(text_copy); json_object_put(json); - //printf("NEGR\n"); unsigned short text_length = (unsigned short) strlen(output) + 2; char *final = why2_calloc(text_length, sizeof(char));