diff options
author | unknown <reggie@monster.> | 2005-06-06 11:34:52 -0500 |
---|---|---|
committer | unknown <reggie@monster.> | 2005-06-06 11:34:52 -0500 |
commit | 6e82d648635706021684cf3d0af3527e617f282c (patch) | |
tree | 7fe15c14e9a6363110d49c2354c0b202ab80c4ce /mysys/my_handler.c | |
parent | 22eeea04903dc0275387fd26cd7bd9cdc8f40f50 (diff) | |
download | mariadb-git-6e82d648635706021684cf3d0af3527e617f282c.tar.gz |
fixes for compiler warnings from VC6
client/mysqltest.c:
undef popen prior to redefining it to avoid compiler warning
cast len argument to replace_dynstr_append_mem to int. This should be ok because the
replace_dynstr_append method uses strlen to accomplish the same thing.
myisam/mi_create.c:
cast myisam_block_size down to uint16 to match the struct element block_length
mysys/default.c:
add (char*) cast to make compiler happy
mysys/my_handler.c:
add (my_bool) cast to make compiler happy
Diffstat (limited to 'mysys/my_handler.c')
-rw-r--r-- | mysys/my_handler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/my_handler.c b/mysys/my_handler.c index 87e526d0ea3..e14bd7529f9 100644 --- a/mysys/my_handler.c +++ b/mysys/my_handler.c @@ -23,7 +23,7 @@ int mi_compare_text(CHARSET_INFO *charset_info, uchar *a, uint a_length, { if (!part_key) return charset_info->coll->strnncollsp(charset_info, a, a_length, - b, b_length, !skip_end_space); + b, b_length, (my_bool)!skip_end_space); return charset_info->coll->strnncoll(charset_info, a, a_length, b, b_length, part_key); } |