summaryrefslogtreecommitdiff
path: root/storage/connect/connect.cc
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/connect.cc
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/connect.cc')
-rw-r--r--storage/connect/connect.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/connect/connect.cc b/storage/connect/connect.cc
index 32997f53068..2d8aeb8b5f4 100644
--- a/storage/connect/connect.cc
+++ b/storage/connect/connect.cc
@@ -191,7 +191,7 @@ PTDB CntGetTDB(PGLOBAL g, LPCSTR name, MODE mode, PHC h)
PTDB tdbp;
PTABLE tabp;
PDBUSER dup= PlgGetUser(g);
- PCATLG cat= (dup) ? dup->Catalog : NULL; // Safe over longjmp
+ volatile PCATLG cat= (dup) ? dup->Catalog : NULL; // Safe over longjmp
if (trace)
printf("CntGetTDB: name=%s mode=%d cat=%p\n", name, mode, cat);