From fc02b699dff00d9f7a8c5856b155607ca8ed5a1d Mon Sep 17 00:00:00 2001 From: Chip Black Date: Sun, 19 Dec 2010 04:27:33 -0600 Subject: [PATCH] Remove useless print statements --- http_blerg.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/http_blerg.c b/http_blerg.c index 86a2690..ef14096 100644 --- a/http_blerg.c +++ b/http_blerg.c @@ -30,12 +30,10 @@ ahc_derp (void *cls, struct MHD_Connection *connection, const char *url, const c } memcpy(author, url + 5, len); author[len] = 0; - printf("author: %s\n", author); c = url + (5 + len); if (c[0] == '/' && c[1] != 0) { record = strtoull(c + 1, NULL, 10); - printf("record: %s %l\n", c + 1, record); if (*ptr == NULL) { *ptr = (void *) 1; return MHD_YES; -- 2.25.1