diff options
author | serg@serg.mylan <> | 2004-10-21 15:34:26 +0200 |
---|---|---|
committer | serg@serg.mylan <> | 2004-10-21 15:34:26 +0200 |
commit | 0ad752e8aff79c3ec46c843d204e232621559936 (patch) | |
tree | 69b86852d06db4e8e2c72fae0e98484d4d2760ff /myisam/myisamchk.c | |
parent | 411b111b6539527c0030cf97856803043f5ef777 (diff) | |
download | mariadb-git-0ad752e8aff79c3ec46c843d204e232621559936.tar.gz |
s/puts/printf/
Diffstat (limited to 'myisam/myisamchk.c')
-rw-r--r-- | myisam/myisamchk.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/myisam/myisamchk.c b/myisam/myisamchk.c index 98cbc838d31..9a2fde8fb89 100644 --- a/myisam/myisamchk.c +++ b/myisam/myisamchk.c @@ -354,7 +354,7 @@ static void usage(void) puts("Description, check and repair of MyISAM tables."); puts("Used without options all tables on the command will be checked for errors"); printf("Usage: %s [OPTIONS] tables[.MYI]\n", my_progname_short); - puts("\nGlobal options:\n\ + printf("\nGlobal options:\n\ -#, --debug=... Output debug log. Often this is 'd:t:o,filename'.\n\ -?, --help Display this help and exit.\n\ -O, --set-variable var=option.\n\ @@ -364,18 +364,18 @@ static void usage(void) -t, --tmpdir=path Path for temporary files. Multiple paths can be\n\ specified, separated by "); #if defined( __WIN__) || defined(OS2) || defined(__NETWARE__) - puts("semicolon (;)"); + printf("semicolon (;)"); #else - puts("colon (:)"); + printf("colon (:)"); #endif - puts(", they will be used\n\ + printf(", they will be used\n\ in a round-robin fashion.\n\ -s, --silent Only print errors. One can use two -s to make\n\ myisamchk very silent.\n\ -v, --verbose Print more information. This can be used with\n\ --description and --check. Use many -v for more verbosity.\n\ -V, --version Print version and exit.\n\ - -w, --wait Wait if table is locked.\n"); + -w, --wait Wait if table is locked.\n\n"); #ifdef DEBUG puts(" --start-check-pos=# Start reading file at given offset.\n"); #endif |