diff options
author | unknown <monty@hundin.mysql.fi> | 2002-06-29 01:06:14 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-06-29 01:06:14 +0300 |
commit | 0ac018183d11cbdcd17b9a6bd8630299f666e806 (patch) | |
tree | 7e78f455d6a04ecc75b1d371dca155622bb7cdaf /myisam | |
parent | f97e1b6ae19ad9b3d3814edd2475c5a25a7ad9e8 (diff) | |
download | mariadb-git-0ac018183d11cbdcd17b9a6bd8630299f666e806.tar.gz |
Fixed copyright in pack_isam.c
Docs/manual.texi:
Changelog
configure.in:
Version update
isam/pack_isam.c:
Fixed copyright
myisam/mi_cache.c:
Indentation fixup
Diffstat (limited to 'myisam')
-rw-r--r-- | myisam/mi_cache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/myisam/mi_cache.c b/myisam/mi_cache.c index 69a1cb0d7a5..f88725ff04b 100644 --- a/myisam/mi_cache.c +++ b/myisam/mi_cache.c @@ -59,8 +59,8 @@ int _mi_read_cache(IO_CACHE *info, byte *buff, my_off_t pos, uint length, in_buff_length=0; if (flag & READING_NEXT) { - if (pos != ((info)->pos_in_file + - (uint) ((info)->rc_end - (info)->rc_request_pos))) + if (pos != (info->pos_in_file + + (uint) (info->rc_end - info->rc_request_pos))) { info->pos_in_file=pos; /* Force start here */ info->rc_pos=info->rc_end=info->rc_request_pos; /* Everything used */ |