diff options
author | unknown <bell@sanja.is.com.ua> | 2005-01-06 20:47:08 +0200 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2005-01-06 20:47:08 +0200 |
commit | babb77767a48662fb1c9c80658538b5492a5cc34 (patch) | |
tree | ca147ec5ce92985dce32e65637c6d25b1e98c0fd /client | |
parent | 928c20f8e33512e00d6e5936cfe1c9f206c951dd (diff) | |
download | mariadb-git-babb77767a48662fb1c9c80658538b5492a5cc34.tar.gz |
postreview changes
client/mysqldump.c:
fixed comment
fixed compiler warning
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqldump.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/mysqldump.c b/client/mysqldump.c index da409d44cd1..d511dc3bbde 100644 --- a/client/mysqldump.c +++ b/client/mysqldump.c @@ -107,11 +107,11 @@ static char *shared_memory_base_name=0; #endif static uint opt_protocol= 0; /* - Constant for detection default value of default_charset (if - default_charset equal to mysql_universal_client_charset, then it is - default value which assigned in very beginning on main()) + Constant for detection of default value of default_charset. + If default_charset is equal to mysql_universal_client_charset, then + it is the default value which assigned at the very beginning of main(). */ -const static char *mysql_universal_client_charset= +static const char *mysql_universal_client_charset= MYSQL_UNIVERSAL_CLIENT_CHARSET; static char *default_charset; static CHARSET_INFO *charset_info= &my_charset_latin1; |