]> Zhao Yanbai Git Server - minix.git/commitdiff
ramdisk: fix command output to stdout 12/3212/1
authorJean-Baptiste Boric <jblbeurope@gmail.com>
Tue, 15 Sep 2015 10:59:13 +0000 (12:59 +0200)
committerLionel Sambuc <lionel.sambuc@gmail.com>
Thu, 8 Oct 2015 10:11:03 +0000 (12:11 +0200)
Change-Id: I58a8cf2cd05b71dbbc1784c7d5770279392e3a8b

minix/commands/ramdisk/ramdisk.c

index d629e5b01d6cec6012d62aaa9405ec9081cf1fc8..0a34ee59ee1decfcef57675ecbd893d83c9b42aa 100644 (file)
@@ -38,7 +38,7 @@ main(int argc, char *argv[])
                return 1;
        }
 
-       fprintf(stderr, "size on %s set to %ldkB\n", d, size/KFACTOR);
+       fprintf(stdout, "size on %s set to %ldkB\n", d, size/KFACTOR);
 
        return 0;
 }