diff options
author | Michael Widenius <monty@askmonty.org> | 2014-06-04 13:23:00 +0300 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2014-06-04 13:23:00 +0300 |
commit | 414e8388bf8925ba128e10adc0086589f9f36016 (patch) | |
tree | cafea70e278afd8dad82a32f218da712748cebd7 /mysys | |
parent | 113333d44725fe35a5eb52c7df58140e1cce45f8 (diff) | |
download | mariadb-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 'mysys')
-rw-r--r-- | mysys/psi_noop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/psi_noop.c b/mysys/psi_noop.c index 8c9f2773170..2a351b5dd8d 100644 --- a/mysys/psi_noop.c +++ b/mysys/psi_noop.c @@ -236,7 +236,7 @@ static void set_thread_state_noop(const char* state NNN) return; } -static void set_thread_info_noop(const char* info NNN, int info_len NNN) +static void set_thread_info_noop(const char* info NNN, uint info_len NNN) { return; } |