Remove debugging statement.
[oweals/busybox.git] / cpio.c
diff --git a/cpio.c b/cpio.c
index 101d6ec49bb65a7a10e7fce4e5f583e94e918713..12a4340bd8b3735d1997a1c899fbe013a6a0af91 100644 (file)
--- a/cpio.c
+++ b/cpio.c
@@ -85,7 +85,7 @@ extern int cpio_main(int argc, char **argv)
                optind++;
        }
 
-       unarchive(src_stream, &get_header_cpio, extract_function, "./", extract_names);
+       unarchive(src_stream, stdout, &get_header_cpio, extract_function, "./", extract_names);
        if (oldmask) umask(oldmask); /* Restore umask if we changed it */
        return EXIT_SUCCESS;
 }