summaryrefslogtreecommitdiff
path: root/myisam
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2004-10-21 15:34:26 +0200
committerunknown <serg@serg.mylan>2004-10-21 15:34:26 +0200
commit855e4dafb3dfccdb34a3a8d3fbd9f682d5d4face (patch)
tree69b86852d06db4e8e2c72fae0e98484d4d2760ff /myisam
parent09a895d93304e254a8c475266f52fd3782c72eaf (diff)
downloadmariadb-git-855e4dafb3dfccdb34a3a8d3fbd9f682d5d4face.tar.gz
s/puts/printf/
BitKeeper/etc/ignore: Added Docs/Images/myaccess-odbc.txt Docs/Images/myaccess.txt Docs/Images/myarchitecture.txt Docs/Images/mydll-properties.txt Docs/Images/mydsn-example.txt Docs/Images/mydsn-icon.txt Docs/Images/mydsn-options.txt Docs/Images/mydsn-setup.txt Docs/Images/mydsn-test-fail.txt Docs/Images/mydsn-test-success.txt Docs/Images/mydsn-trace.txt Docs/Images/mydsn.txt Docs/Images/myflowchart.txt to the ignore list
Diffstat (limited to 'myisam')
-rw-r--r--myisam/myisamchk.c10
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