summaryrefslogtreecommitdiff
path: root/mysys/mf_iocache.c
diff options
context:
space:
mode:
authorpaul@kite-hub.kitebird.com <>2004-06-03 11:52:54 -0500
committerpaul@kite-hub.kitebird.com <>2004-06-03 11:52:54 -0500
commit2f0ca1ce424a26f71d4b6ec85d890060ecb73c68 (patch)
treeb6459e6d651d238a8d518e834adcb05db8ffcf04 /mysys/mf_iocache.c
parentdeaa73fe42ba8c430c52c7e31c65af05cb19da0e (diff)
downloadmariadb-git-2f0ca1ce424a26f71d4b6ec85d890060ecb73c68.tar.gz
Fix skipp -> skip once and for all.
(Note: This affects only comments, not variable names.)
Diffstat (limited to 'mysys/mf_iocache.c')
-rw-r--r--mysys/mf_iocache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysys/mf_iocache.c b/mysys/mf_iocache.c
index 530721a79ad..7b5371c4289 100644
--- a/mysys/mf_iocache.c
+++ b/mysys/mf_iocache.c
@@ -800,7 +800,7 @@ int _my_b_async_read(register IO_CACHE *info, byte *Buffer, uint Count)
{ /* Fix if skipped bytes */
if (info->aio_read_pos + read_length < info->pos_in_file)
{
- read_length=0; /* Skipp block */
+ read_length=0; /* Skip block */
next_pos_in_file=info->pos_in_file;
}
else
@@ -894,7 +894,7 @@ int _my_b_async_read(register IO_CACHE *info, byte *Buffer, uint Count)
if (aioread(info->file,read_buffer,(int) max_length,
(my_off_t) next_pos_in_file,MY_SEEK_SET,
&info->aio_result.result))
- { /* Skipp async io */
+ { /* Skip async io */
my_errno=errno;
DBUG_PRINT("error",("got error: %d, aio_result: %d from aioread, async skipped",
errno, info->aio_result.result.aio_errno));