From d35292fdf1e568e448e097e873459a10d01fa8d7 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 12 Nov 2003 03:38:46 -0500 Subject: 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. --- strings/my_strtoll10.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'strings/my_strtoll10.c') diff --git a/strings/my_strtoll10.c b/strings/my_strtoll10.c index d741fac6825..f795ef64728 100644 --- a/strings/my_strtoll10.c +++ b/strings/my_strtoll10.c @@ -19,7 +19,7 @@ #include #define ULONGLONG_MAX (~(ulonglong) 0) -#define MAX_NEGATIVE_NUMBER ((ulonglong) 0x8000000000000000LL) +#define MAX_NEGATIVE_NUMBER ((ulonglong) LL(0x8000000000000000)) #define INIT_CNT 9 #define LFACTOR LL(1000000000) #define LFACTOR1 LL(10000000000) -- cgit v1.2.1