Fixed 'ls -s' so it actually displays block sizes again.
[oweals/busybox.git] / mt.c
diff --git a/mt.c b/mt.c
index 0d28339b99056f82c95dd4242aff17868e639365..eb93cb234f2a3fbe62c8e34ad44b9f134d4d22f7 100644 (file)
--- a/mt.c
+++ b/mt.c
@@ -57,12 +57,12 @@ extern int mt_main(int argc, char **argv)
        int fd;
        
        if (argc < 2) {
-               usage(mt_usage);
+               show_usage();
        }
 
        if (strcmp(argv[1], "-f") == 0) {
                if (argc < 4) {
-                       usage(mt_usage);
+                       show_usage();
                }
                file = argv[2];
                argv += 2;
@@ -76,7 +76,7 @@ extern int mt_main(int argc, char **argv)
        }
 
        if (code->name == 0) {
-               error_msg("unrecognized opcode %s.\n", argv[1]);
+               error_msg("unrecognized opcode %s.", argv[1]);
                return EXIT_FAILURE;
        }