diff options
author | brian@zim.(none) <> | 2005-06-01 17:34:10 -0700 |
---|---|---|
committer | brian@zim.(none) <> | 2005-06-01 17:34:10 -0700 |
commit | ba9b9f8993ac8d0fa8fc5abdaa670f9eaa548824 (patch) | |
tree | ea8ba4e29fcc4c122113103ea3fc25d18326ea68 /client | |
parent | e94f4fa8e03b326e2161f2ad926aaafa128b57fe (diff) | |
download | mariadb-git-ba9b9f8993ac8d0fa8fc5abdaa670f9eaa548824.tar.gz |
Mainly cleanups for gcc 4.0. Some small pieces from looking at -Wall. Removed a number of dumb things in ha_tina.
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqladmin.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysqladmin.cc b/client/mysqladmin.cc index 0da7d5b3acf..5a4690ea30e 100644 --- a/client/mysqladmin.cc +++ b/client/mysqladmin.cc @@ -271,7 +271,7 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)), option_wait=1; } else - option_wait= ~0; + option_wait= ~(uint)0; break; case '?': case 'I': /* Info */ |