diff options
author | Alexander Nozdrin <alik@sun.com> | 2009-06-03 15:18:12 +0400 |
---|---|---|
committer | Alexander Nozdrin <alik@sun.com> | 2009-06-03 15:18:12 +0400 |
commit | 744373ecc02462839db2800f17d0f92a6ff57968 (patch) | |
tree | 62b5183554e517c962f4c106a42e27cb69f52bcf /client/mysql_upgrade.c | |
parent | 5341c4bd0aa84dadea641d7f9a98e51f7c62b2b9 (diff) | |
download | mariadb-git-744373ecc02462839db2800f17d0f92a6ff57968.tar.gz |
Fix compilation failures: get rid of C++ specifics in C-code.
Diffstat (limited to 'client/mysql_upgrade.c')
-rw-r--r-- | client/mysql_upgrade.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysql_upgrade.c b/client/mysql_upgrade.c index bbc0e0f57ec..641d4a38d16 100644 --- a/client/mysql_upgrade.c +++ b/client/mysql_upgrade.c @@ -234,7 +234,7 @@ get_one_option(int optid, const struct my_option *opt, case 'p': if (argument == disabled_my_option) - argument= (char*) ""; // Don't require password + argument= (char*) ""; /* Don't require password */ tty_password= 1; add_option= FALSE; if (argument) |