summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripts/test-shell.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/test-shell.c b/scripts/test-shell.c
index 7e600388..2f8ecbd8 100644
--- a/scripts/test-shell.c
+++ b/scripts/test-shell.c
@@ -112,7 +112,6 @@ int copy_file_objects(FILE *source, FILE *target) {
size_t read;
do {
read = fread(buffer, 1, sizeof(buffer), source);
- fprintf(stderr, "Read: %*s\n", read, buffer);
fwrite(buffer, 1, read, target);
} while (!feof(source));
return ferror(source) ? -1 : 0;