From: Ben Gras Date: Thu, 19 Apr 2007 14:13:27 +0000 (+0000) Subject: Make mkfs message a bit clearer. X-Git-Tag: v3.1.4~439 X-Git-Url: http://zhaoyanbai.com/repos/rndc.conf.html?a=commitdiff_plain;h=0a0f800805c2152de13a10197a449c2093f86455;p=minix.git Make mkfs message a bit clearer. --- diff --git a/commands/simple/mkfs.c b/commands/simple/mkfs.c index 315212b85..faddeb51d 100755 --- a/commands/simple/mkfs.c +++ b/commands/simple/mkfs.c @@ -233,8 +233,7 @@ char *argv[]; * reporting a 0-sized device (displays usage). */ if(blocks < 1) { - fprintf(stderr, "%s: this device can't hold a filesystem.\n", - progname); + fprintf(stderr, "%s: zero size device.\n", progname); return 1; } }