diff options
author | paul@kite-hub.kitebird.com <> | 2004-06-03 11:52:54 -0500 |
---|---|---|
committer | paul@kite-hub.kitebird.com <> | 2004-06-03 11:52:54 -0500 |
commit | 2f0ca1ce424a26f71d4b6ec85d890060ecb73c68 (patch) | |
tree | b6459e6d651d238a8d518e834adcb05db8ffcf04 /isam/_dynrec.c | |
parent | deaa73fe42ba8c430c52c7e31c65af05cb19da0e (diff) | |
download | mariadb-git-2f0ca1ce424a26f71d4b6ec85d890060ecb73c68.tar.gz |
Fix skipp -> skip once and for all.
(Note: This affects only comments, not variable names.)
Diffstat (limited to 'isam/_dynrec.c')
-rw-r--r-- | isam/_dynrec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/isam/_dynrec.c b/isam/_dynrec.c index d17d34e6778..25fe01e23f2 100644 --- a/isam/_dynrec.c +++ b/isam/_dynrec.c @@ -430,7 +430,7 @@ uint _nisam_rec_pack(N_INFO *info, register byte *to, register const byte *from) to+=length+blob->length; } blob++; - from+=sizeof(char*); /* Skipp blob-pointer */ + from+=sizeof(char*); /* Skip blob-pointer */ } else if (type == FIELD_SKIP_ZERO) { @@ -633,7 +633,7 @@ uint _nisam_rec_unpack(register N_INFO *info, register byte *to, byte *from, if ((type = (enum en_fieldtype) rec->base.type) != FIELD_NORMAL) { if (type == FIELD_ZERO) - continue; /* Skipp this */ + continue; /* Skip this */ if (flag & bit) { if (type == FIELD_BLOB) @@ -747,7 +747,7 @@ uint _calc_blob_length(uint length, const byte *pos) return (uint) (unsigned short) j; } #ifdef MSDOS - break; /* skipp microsoft warning */ + break; /* skip microsoft warning */ #endif case 3: return uint3korr(pos); |