Removed bloat

This commit is contained in:
Ano-sys
2025-02-07 22:59:39 +01:00
parent 8774699f4e
commit 6433a8aed1
4 changed files with 2 additions and 2 deletions
Binary file not shown.
+2 -2
View File
@@ -255,7 +255,7 @@ void *receiverFunc(void *args)
return NULL;
}
void fucking_string_empty(void *context, char **worker_ports){
void string_empty(void *context, char **worker_ports){
THREAD_ARGS *args = malloc(sizeof(THREAD_ARGS));
if(!args){
// perror("[MAIN - fucking_string_empty] Failed to allocate memory for args");
@@ -282,7 +282,7 @@ void map(size_t worker_count, char **worker_ports, const char *filename, void *c
char *content = raw;
if(strcmp(content, "") == 0){
fucking_string_empty(context, worker_ports);
string_empty(context, worker_ports);
free(content);
return;
}