Author: ed
Date: Sat Apr 11 14:15:56 2009
New Revision: 190924
URL: http://svn.freebsd.org/changeset/base/190924

Log:
  Clean up the usage() function to use a single fprintf().
  
  Submitted by: Christoph Mallon <christoph mallon gmx de>

Modified:
  head/sbin/newfs_msdos/newfs_msdos.c

Modified: head/sbin/newfs_msdos/newfs_msdos.c
==============================================================================
--- head/sbin/newfs_msdos/newfs_msdos.c Sat Apr 11 14:15:09 2009        
(r190923)
+++ head/sbin/newfs_msdos/newfs_msdos.c Sat Apr 11 14:15:56 2009        
(r190924)
@@ -983,30 +983,29 @@ setstr(u_int8_t *dest, const char *src, 
 static void
 usage(void)
 {
-    fprintf(stderr,
-           "usage: newfs_msdos [ -options ] special [disktype]\n");
-    fprintf(stderr, "where the options are:\n");
-    fprintf(stderr, "\t-N don't create file system: "
-           "just print out parameters\n");
-    fprintf(stderr, "\t-B get bootstrap from file\n");
-    fprintf(stderr, "\t-F FAT type (12, 16, or 32)\n");
-    fprintf(stderr, "\t-I volume ID\n");
-    fprintf(stderr, "\t-L volume label\n");
-    fprintf(stderr, "\t-O OEM string\n");
-    fprintf(stderr, "\t-S bytes/sector\n");
-    fprintf(stderr, "\t-a sectors/FAT\n");
-    fprintf(stderr, "\t-b block size\n");
-    fprintf(stderr, "\t-c sectors/cluster\n");
-    fprintf(stderr, "\t-e root directory entries\n");
-    fprintf(stderr, "\t-f standard format\n");
-    fprintf(stderr, "\t-h drive heads\n");
-    fprintf(stderr, "\t-i file system info sector\n");
-    fprintf(stderr, "\t-k backup boot sector\n");
-    fprintf(stderr, "\t-m media descriptor\n");
-    fprintf(stderr, "\t-n number of FATs\n");
-    fprintf(stderr, "\t-o hidden sectors\n");
-    fprintf(stderr, "\t-r reserved sectors\n");
-    fprintf(stderr, "\t-s file system size (sectors)\n");
-    fprintf(stderr, "\t-u sectors/track\n");
-    exit(1);
+       fprintf(stderr,
+           "usage: newfs_msdos [ -options ] special [disktype]\n"
+           "where the options are:\n"
+           "\t-B get bootstrap from file\n"
+           "\t-F FAT type (12, 16, or 32)\n"
+           "\t-I volume ID\n"
+           "\t-L volume label\n"
+           "\t-N don't create file system: just print out parameters\n"
+           "\t-O OEM string\n"
+           "\t-S bytes/sector\n"
+           "\t-a sectors/FAT\n"
+           "\t-b block size\n"
+           "\t-c sectors/cluster\n"
+           "\t-e root directory entries\n"
+           "\t-f standard format\n"
+           "\t-h drive heads\n"
+           "\t-i file system info sector\n"
+           "\t-k backup boot sector\n"
+           "\t-m media descriptor\n"
+           "\t-n number of FATs\n"
+           "\t-o hidden sectors\n"
+           "\t-r reserved sectors\n"
+           "\t-s file system size (sectors)\n"
+           "\t-u sectors/track\n");
+       exit(1);
 }
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to