diff options
author | jani@a193-229-222-105.elisa-laajakaista.fi <> | 2005-09-23 16:47:08 +0300 |
---|---|---|
committer | jani@a193-229-222-105.elisa-laajakaista.fi <> | 2005-09-23 16:47:08 +0300 |
commit | acf218b708c68f5fff9fea9450a438116866f1d5 (patch) | |
tree | dabaf9b38c2c72433e000b36b0a628d9d36fbb38 /myisam/mi_key.c | |
parent | f5c00b0dbda74c899067880ac0de5c489d54b19f (diff) | |
download | mariadb-git-acf218b708c68f5fff9fea9450a438116866f1d5.tar.gz |
Several fixes revelaled by Intel compiler.
Diffstat (limited to 'myisam/mi_key.c')
-rw-r--r-- | myisam/mi_key.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/myisam/mi_key.c b/myisam/mi_key.c index ae50900a190..4cabfc91197 100644 --- a/myisam/mi_key.c +++ b/myisam/mi_key.c @@ -358,7 +358,7 @@ static int _mi_put_key_in_record(register MI_INFO *info, uint keynr, byte *blob_ptr; DBUG_ENTER("_mi_put_key_in_record"); - blob_ptr= info->lastkey2; /* Place to put blob parts */ + blob_ptr= (byte*) info->lastkey2; /* Place to put blob parts */ key=(byte*) info->lastkey; /* KEy that was read */ key_end=key+info->lastkey_length; for (keyseg=info->s->keyinfo[keynr].seg ; keyseg->type ;keyseg++) |