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/mysqlshow.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/mysqlshow.c')
-rw-r--r-- | client/mysqlshow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysqlshow.c b/client/mysqlshow.c index e401d6cad8f..15f791ca8fb 100644 --- a/client/mysqlshow.c +++ b/client/mysqlshow.c @@ -282,7 +282,7 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)), break; case 'p': if (argument == disabled_my_option) - argument= (char*) ""; // Don't require password + argument= (char*) ""; /* Don't require password */ if (argument) { char *start=argument; |