From 346a9f2b4ec6664c99479fc293ca48d3bbe68b12 Mon Sep 17 00:00:00 2001 From: Themaister Date: Sun, 26 Jun 2011 17:06:05 +0200 Subject: [PATCH] Remove debug messages. --- file.c | 1 - 1 file changed, 1 deletion(-) diff --git a/file.c b/file.c index 1ca176bd29..5607813922 100644 --- a/file.c +++ b/file.c @@ -97,7 +97,6 @@ bool read_file_string(const char *path, char **buf) while (ptr && !feof(file)) { size_t bufsize = (size_t)(((ptrdiff_t)*buf + (ptrdiff_t)len) - (ptrdiff_t)ptr); - fprintf(stderr, "bufsize: %u\n", (unsigned)bufsize); fgets(ptr, bufsize, file); ptr = strchr(ptr, '\0');