diff options
Diffstat (limited to 'storage/maria/trnman.c')
-rw-r--r-- | storage/maria/trnman.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/maria/trnman.c b/storage/maria/trnman.c index 83249ab328f..4f009a7d5a8 100644 --- a/storage/maria/trnman.c +++ b/storage/maria/trnman.c @@ -94,11 +94,11 @@ static TRN *short_trid_to_TRN(uint16 short_trid) } #endif -static byte *trn_get_hash_key(const byte *trn, uint* len, +static uchar *trn_get_hash_key(const uchar *trn, uint* len, my_bool unused __attribute__ ((unused))) { *len= sizeof(TrID); - return (byte *) & ((*((TRN **)trn))->trid); + return (uchar *) & ((*((TRN **)trn))->trid); } int trnman_init() |