diff --git a/coreutils/cp.c b/coreutils/cp.c index 79cf0c6..5d6689d 100644 --- a/coreutils/cp.c +++ b/coreutils/cp.c @@ -64,7 +64,6 @@ int cptree(const char *src, const char *dst) { struct stat stat_path; get_stat(src, &stat_path); - printf("%s %s\n", src, dst); if (S_ISDIR(stat_path.st_mode) == 0) { if (copy(src, dst)) { fprintf(stderr, "cp: %s: copy() failed (%s)\n", src, strerror(errno));