diff options
author | monty@mashka.mysql.fi <> | 2003-01-05 20:18:49 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-01-05 20:18:49 +0200 |
commit | 9ecf9645ebab531ce5aa29514b6b9457968f9946 (patch) | |
tree | ce42417ba1ab6dac8c367a9ae180ea377956e95a /mysys | |
parent | 5e77a27182fe6a2544e3e4b0ad23399c9fb2ca48 (diff) | |
download | mariadb-git-9ecf9645ebab531ce5aa29514b6b9457968f9946.tar.gz |
A lot of portability fixes.
Added rename table for BDB. This fixes a bug in ALTER TABLE with BDB tables.
Diffstat (limited to 'mysys')
-rw-r--r-- | mysys/my_getopt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysys/my_getopt.c b/mysys/my_getopt.c index b2ee6e0f373..21adb9374ce 100644 --- a/mysys/my_getopt.c +++ b/mysys/my_getopt.c @@ -572,7 +572,7 @@ static longlong eval_num_suffix (char *argument, int *error, char *option_name) In case of an error, set error value in *err. */ -longlong getopt_ll (char *arg, const struct my_option *optp, int *err) +static longlong getopt_ll(char *arg, const struct my_option *optp, int *err) { longlong num; @@ -596,7 +596,7 @@ longlong getopt_ll (char *arg, const struct my_option *optp, int *err) values. */ -static ulonglong getopt_ull (char *arg, const struct my_option *optp, int *err) +static ulonglong getopt_ull(char *arg, const struct my_option *optp, int *err) { ulonglong num; |