diff options
author | unknown <greg@mysql.com> | 2003-11-12 03:38:46 -0500 |
---|---|---|
committer | unknown <greg@mysql.com> | 2003-11-12 03:38:46 -0500 |
commit | d35292fdf1e568e448e097e873459a10d01fa8d7 (patch) | |
tree | 4a51a6b365d0f47e5086c8189c17bdcb977bca13 /sql/mysql_priv.h | |
parent | f5ea1f4f2ff8c3a6cedfeaf19efe81c4c2943fad (diff) | |
download | mariadb-git-d35292fdf1e568e448e097e873459a10d01fa8d7.tar.gz |
Fixed minor compiler errors encountered during pre-final builds.
sql/item_func.cc:
Goto statement potentially skips declaration of 'i'-- VC++ compiler
generates an error.
sql/mysql_priv.h:
Some platforms will not find sql_bitmap.h when angle brackets are used.
sql/mysqld.cc:
my_strcasecmp now needs a charset info parameter.
strings/my_strtoll10.c:
Changed constant macro to use LL()-- fixes compiler error under Windows.
Diffstat (limited to 'sql/mysql_priv.h')
-rw-r--r-- | sql/mysql_priv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/mysql_priv.h b/sql/mysql_priv.h index 12c772e7253..71ad5ce67c2 100644 --- a/sql/mysql_priv.h +++ b/sql/mysql_priv.h @@ -24,7 +24,7 @@ #include <signal.h> #include <thr_lock.h> #include <my_base.h> /* Needed by field.h */ -#include <sql_bitmap.h> +#include "sql_bitmap.h" #ifdef __EMX__ #undef write /* remove pthread.h macro definition for EMX */ |