ramdisk: fix command output to stdout

Change-Id: I58a8cf2cd05b71dbbc1784c7d5770279392e3a8b
This commit is contained in:
Jean-Baptiste Boric 2015-09-15 12:59:13 +02:00 committed by Lionel Sambuc
parent 9af3a794f6
commit 9dfdf6f7ba
1 changed files with 1 additions and 1 deletions

View 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;
}