diff options
author | unknown <monty@hundin.mysql.fi> | 2002-06-28 09:18:23 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-06-28 09:18:23 +0300 |
commit | d7a84c7af0e1eb166c48ce7a7c3e3dca83f43baf (patch) | |
tree | cc96a38fba045126d5ddd2d125e830e1c2786a7e /myisam/mi_cache.c | |
parent | 5e5d70399c249607352c1321c59e3f8eb38e43ab (diff) | |
download | mariadb-git-d7a84c7af0e1eb166c48ce7a7c3e3dca83f43baf.tar.gz |
Indentation cleanup & new comments
BitKeeper/deleted/.del-getvar.c~2a29ff383970fd31:
Delete: mysys/getvar.c
zlib/zlib.dsp:
Turn on EOLN_NATIVE flag
libmysql/Makefile.shared:
Remove getvar.c
myisam/mi_cache.c:
Indentation cleanup
myisam/mi_check.c:
Indentation cleanup
Changed name of a variable
myisam/sort.c:
Indentation cleanup
Added initialization of a variable
myisammrg/myrg_delete.c:
Indentation cleanup
myisammrg/myrg_rsame.c:
Indentation cleanup
myisammrg/myrg_update.c:
Indentation cleanup
myisammrg/myrg_write.c:
Indentation cleanup
mysys/Makefile.am:
removed getvar.c
sql/field.cc:
Added warning counter to overflow() (and removed this from other places)
Diffstat (limited to 'myisam/mi_cache.c')
-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 bd3c4cd213c..d392a9cc916 100644 --- a/myisam/mi_cache.c +++ b/myisam/mi_cache.c @@ -72,8 +72,8 @@ int _mi_read_cache(IO_CACHE *info, byte *buff, my_off_t pos, uint length, in_buff_length=0; if (flag & READING_NEXT || info->share) { - if (pos != - (info->pos_in_file + (uint) (info->read_end - info->request_pos))) + if (pos != (info->pos_in_file + (uint) (info->read_end - + info->request_pos))) { info->pos_in_file=pos; /* Force start here */ info->read_pos=info->read_end=info->request_pos; /* Everything used */ |