1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Windows fixes for VC++ compiler compability

This commit is contained in:
miguel@hegel.local
2004-05-05 02:59:17 -03:00
parent ee627d2510
commit 8d1480f7c5
11 changed files with 38 additions and 26 deletions

View File

@ -1490,7 +1490,7 @@ int handler::compare_key(key_range *range)
if (!range)
return 0; // No max range
for (const char *key=range->key, *end=key+range->length;
for (const char *key= (const char*) range->key, *end=key+range->length;
key < end;
key+= store_length, key_part++)
{