summaryrefslogtreecommitdiff
path: root/sql-common
diff options
context:
space:
mode:
authorunknown <monty@narttu.mysql.fi>2003-06-15 23:24:37 +0300
committerunknown <monty@narttu.mysql.fi>2003-06-15 23:24:37 +0300
commited1d28fdb6b6c828556917716c9b700bf7450426 (patch)
tree3b1cb9a063538f009e13b645f481a46e4f8620f6 /sql-common
parentfb2825e2b5bb05addbc836ae773783f8c652dd54 (diff)
downloadmariadb-git-ed1d28fdb6b6c828556917716c9b700bf7450426.tar.gz
Fixes for make_win_src_distributions
Removed compiler warnings scripts/make_win_src_distribution.sh: Added option --dirname Also copy sql-common directory Create mysql data files even if mysqld is not installed scripts/mysql_create_system_tables.sh: Update for usage with make_win_src_distribution scripts/mysql_install_db.sh: Update for usage with make_win_src_distribution sql-common/client.c: Portability fix sql/item_cmpfunc.cc: Removed compiler warning sql/sql_acl.cc: Indentation cleanup Removed compiler warning sql/sql_parse.cc: Removed compiler warning sql/sql_select.cc: Removed compiler warning sql/sql_yacc.yy: Removed compiler warning strings/ctype-utf8.c: Removed compiler warning
Diffstat (limited to 'sql-common')
-rw-r--r--sql-common/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql-common/client.c b/sql-common/client.c
index 1f0f67e4ff1..66a073ed53f 100644
--- a/sql-common/client.c
+++ b/sql-common/client.c
@@ -107,7 +107,7 @@ const char *unknown_sqlstate= "HY000";
const char *not_error_sqlstate= "00000";
#ifdef HAVE_SMEM
char *shared_memory_base_name= 0;
-const char def_shared_memory_base_name= default_shared_memory_base_name;
+const char *def_shared_memory_base_name= default_shared_memory_base_name;
#endif
static void mysql_close_free_options(MYSQL *mysql);