diff options
Diffstat (limited to 'storage/maria/ma_dbug.c')
-rw-r--r-- | storage/maria/ma_dbug.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/storage/maria/ma_dbug.c b/storage/maria/ma_dbug.c index 7f2bff85047..596bf18bfe5 100644 --- a/storage/maria/ma_dbug.c +++ b/storage/maria/ma_dbug.c @@ -21,15 +21,15 @@ /* Print a key in user understandable format */ void _ma_print_key(FILE *stream, register HA_KEYSEG *keyseg, - const uchar *key, uint length) + const byte *key, uint length) { int flag; short int s_1; long int l_1; float f_1; double d_1; - const uchar *end; - const uchar *key_end=key+length; + const byte *end; + const byte *key_end= key + length; VOID(fputs("Key: \"",stream)); flag=0; |