]> Zhao Yanbai Git Server - minix.git/commitdiff
mkfs.mfs: fix typo in error message 09/3509/1
authorNik Nyby <nikolas@gnu.org>
Tue, 9 Jan 2018 04:55:18 +0000 (23:55 -0500)
committerLionel Sambuc <lionel.sambuc@gmail.com>
Fri, 23 Mar 2018 06:33:25 +0000 (07:33 +0100)
Closes #242

Change-Id: I91ec2b36b2abfa897a43c97d886578fd28a5c768

minix/usr.sbin/mkfs.mfs/mkfs.c

index 879032cc43283d370c7823f4b86849b4c865296f..a3e619beddf4c53b21a1bf02c416ecdd2f5d50e3 100644 (file)
@@ -264,7 +264,7 @@ main(int argc, char *argv[])
   /* Determine the size of the device if not specified as -b or proto. */
   maxblocks = sizeup(argv[optind]);
   if (bblocks != 0 && bblocks + fs_offset_blocks > maxblocks && !insertmode) {
-       errx(4, "Given size -b %d exeeds device capacity(%d)\n", bblocks, maxblocks);
+       errx(4, "Given size -b %d exceeds device capacity(%d)\n", bblocks, maxblocks);
   }
 
   if (argc - optind == 1 && bblocks == 0) {