diff --git a/src/evt_core.c b/src/evt_core.c index 3ab8b78..6cf5e55 100644 --- a/src/evt_core.c +++ b/src/evt_core.c @@ -3,13 +3,13 @@ void free_fdinfo(void* v) { struct evt_core_fdinfo* fdinfo = (struct evt_core_fdinfo*)v; close(fdinfo->fd); // We close the file descriptor here - fprintf(stderr, "Freeing fdinfo for %s\n", fdinfo->url); + //fprintf(stderr, "Freeing fdinfo for %s\n", fdinfo->url); if (fdinfo->free_other != NULL) { - fprintf(stderr, "Freeing fdinfo->other for %s\n", fdinfo->url); + //fprintf(stderr, "Freeing fdinfo->other for %s\n", fdinfo->url); fdinfo->free_other(fdinfo->other); } if (fdinfo->url != NULL) { - fprintf(stderr, "Freeing fdinfo->url for %s\n", fdinfo->url); + //fprintf(stderr, "Freeing fdinfo->url for %s\n", fdinfo->url); free(fdinfo->url); // We free the URL here; } free(v);