summaryrefslogtreecommitdiff
path: root/storage/connect/filamvct.cpp
diff options
context:
space:
mode:
authorMichael Widenius <monty@askmonty.org>2014-06-04 13:23:00 +0300
committerMichael Widenius <monty@askmonty.org>2014-06-04 13:23:00 +0300
commit414e8388bf8925ba128e10adc0086589f9f36016 (patch)
treecafea70e278afd8dad82a32f218da712748cebd7 /storage/connect/filamvct.cpp
parent113333d44725fe35a5eb52c7df58140e1cce45f8 (diff)
downloadmariadb-git-414e8388bf8925ba128e10adc0086589f9f36016.tar.gz
Fixed compiler warnings
mysys/psi_noop.c: Fixed wrong prototype sql/rpl_gtid.cc: Added #ifndef to hide not used variable storage/connect/connect.cc: Added volatile to avoid compiler warning in gcc 4.8.1 storage/connect/filamvct.cpp: Added volatile to avoid compiler warning in gcc 4.8.1 storage/maria/ma_checkpoint.c: Removed cast to avoid compiler warning storage/myisam/mi_delete_table.c: Added attribute to avoid compiler warning storage/tokudb/ha_tokudb.cc: Use LINT_INIT_STRUCT to avoid compiler warnings storage/tokudb/hatoku_hton.cc: Use LINT_INIT_STRUCT to avoid compiler warnings storage/tokudb/tokudb_card.h: Use LINT_INIT_STRUCT to avoid compiler warnings storage/tokudb/tokudb_status.h: Use LINT_INIT_STRUCT to avoid compiler warnings
Diffstat (limited to 'storage/connect/filamvct.cpp')
-rwxr-xr-xstorage/connect/filamvct.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/connect/filamvct.cpp b/storage/connect/filamvct.cpp
index 1957c7f29ac..edadc25b50b 100755
--- a/storage/connect/filamvct.cpp
+++ b/storage/connect/filamvct.cpp
@@ -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) {