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');