diff options
author | monty@mysql.com <> | 2004-05-07 01:43:17 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2004-05-07 01:43:17 +0300 |
commit | 939ea71ecd2a8d8661b52660603cbd14c6773cb3 (patch) | |
tree | f2717f686b72c32ff82659eaf22da3a53b8deb1a /extra/my_print_defaults.c | |
parent | db127864f6456a8b781fc4dddb49e83f9661a19d (diff) | |
download | mariadb-git-939ea71ecd2a8d8661b52660603cbd14c6773cb3.tar.gz |
Portability fixes
Change strtoll -> my_strtoll10()
Fixed bug in my_strntoul() and my_strntol() where we got different values on 32 and 64 bit systems (Bug #3472)
Diffstat (limited to 'extra/my_print_defaults.c')
-rw-r--r-- | extra/my_print_defaults.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/my_print_defaults.c b/extra/my_print_defaults.c index e580603bcb8..f4da839f8e2 100644 --- a/extra/my_print_defaults.c +++ b/extra/my_print_defaults.c @@ -49,7 +49,7 @@ static struct my_option my_long_options[] = {"help", '?', "Display this help message and exit.", 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}, {"verbose", 'v', "Increase the output level", - 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}, + 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}, {"version", 'V', "Output version information and exit.", 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0} |