diff options
author | Sergei Golubchik <sergii@pisem.net> | 2011-11-03 23:48:42 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2011-11-03 23:48:42 +0100 |
commit | af32b02c06f32a89dc9f52e556bc5dd3bf49c19e (patch) | |
tree | c7e6dd13e693193b6aaed251a19199c8cc1de53e /sql | |
parent | 6edd76785c2fff55f1869ef816da13a8bab6151d (diff) | |
download | mariadb-git-af32b02c06f32a89dc9f52e556bc5dd3bf49c19e.tar.gz |
few cmake/compiler warnings
Diffstat (limited to 'sql')
-rw-r--r-- | sql/debug_sync.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/debug_sync.cc b/sql/debug_sync.cc index 093650b3673..eb8e3b093c9 100644 --- a/sql/debug_sync.cc +++ b/sql/debug_sync.cc @@ -1738,7 +1738,7 @@ static void debug_sync_execute(THD *thd, st_debug_sync_action *action) if (action->wait_for.length()) { mysql_mutex_t *old_mutex; - mysql_cond_t *old_cond; + mysql_cond_t *UNINIT_VAR(old_cond); int error= 0; struct timespec abstime; |