diff options
Diffstat (limited to 'storage/connect/filamvct.cpp')
-rwxr-xr-x | storage/connect/filamvct.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/storage/connect/filamvct.cpp b/storage/connect/filamvct.cpp index 97eb4c7c8b4..edadc25b50b 100755 --- a/storage/connect/filamvct.cpp +++ b/storage/connect/filamvct.cpp @@ -712,7 +712,7 @@ int VCTFAM::DeleteRecords(PGLOBAL g, int irc) } else { /*****************************************************************/ - /* First line to delete. Move of eventual preceeding lines is */ + /* First line to delete. Move of eventual preceding lines is */ /* not required here, just the setting of future Spos and Tpos. */ /*****************************************************************/ T_Stream = Stream; @@ -1459,7 +1459,7 @@ bool VCMFAM::AllocateBuffer(PGLOBAL g) bool VCMFAM::InitInsert(PGLOBAL g) { int rc; - PVCTCOL cp = (PVCTCOL)Tdbp->GetColumns(); + volatile PVCTCOL cp = (PVCTCOL)Tdbp->GetColumns(); // We come here in MODE_INSERT only if (Last == Nrec) { @@ -1558,7 +1558,7 @@ int VCMFAM::DeleteRecords(PGLOBAL g, int irc) if (Tpos == Spos) /*******************************************************************/ - /* First line to delete. Move of eventual preceeding lines is */ + /* First line to delete. Move of eventual preceding lines is */ /* not required here, just setting of future Spos and Tpos. */ /*******************************************************************/ Tpos = Fpos; // Spos is set below @@ -2153,7 +2153,7 @@ int VECFAM::DeleteRecords(PGLOBAL g, int irc) } else /*****************************************************************/ - /* Move of eventual preceeding lines is not required here. */ + /* Move of eventual preceding lines is not required here. */ /* Set the future Tpos, and give Spos a value to block copying. */ /*****************************************************************/ Spos = Tpos = Fpos; @@ -2834,7 +2834,7 @@ int VMPFAM::DeleteRecords(PGLOBAL g, int irc) if (Tpos == Spos) /*******************************************************************/ - /* First line to delete. Move of eventual preceeding lines is */ + /* First line to delete. Move of eventual preceding lines is */ /* not required here, just setting of future Spos and Tpos. */ /*******************************************************************/ Tpos = Fpos; // Spos is set below @@ -3756,7 +3756,7 @@ int BGVFAM::DeleteRecords(PGLOBAL g, int irc) } else { /*****************************************************************/ - /* Move of eventual preceeding lines is not required here. */ + /* Move of eventual preceding lines is not required here. */ /* Set the target file as being the source file itself. */ /* Set the future Tpos, and give Spos a value to block copying. */ /*****************************************************************/ |