From: Chip Black Date: Sun, 19 Dec 2010 10:27:33 +0000 (-0600) Subject: Remove useless print statements X-Git-Tag: ohfuckreddit~56 X-Git-Url: http://git.bytex64.net/?a=commitdiff_plain;h=fc02b699dff00d9f7a8c5856b155607ca8ed5a1d;p=blerg.git Remove useless print statements --- 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;