diff options
author | Michael Widenius <monty@askmonty.org> | 2010-12-01 22:23:59 +0200 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2010-12-01 22:23:59 +0200 |
commit | 863a493b4f521eb7a5002e2dea6c0148ed1ada0b (patch) | |
tree | 517124ee30f986b655eb96d7ae0bddc4450c4d17 /sql/debug_sync.cc | |
parent | 1e5061fe3be981d6f685a2865fd1e2bcd3fcc23a (diff) | |
download | mariadb-git-863a493b4f521eb7a5002e2dea6c0148ed1ada0b.tar.gz |
Fixed compiler warnings
sql/debug_sync.cc:
Initalize variable
storage/sphinx/Makefile.am:
Ensure we compile with the -Wno-unused-parameter flag
Diffstat (limited to 'sql/debug_sync.cc')
-rw-r--r-- | sql/debug_sync.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/debug_sync.cc b/sql/debug_sync.cc index 23a649a89fa..c9c580c6442 100644 --- a/sql/debug_sync.cc +++ b/sql/debug_sync.cc @@ -1719,6 +1719,7 @@ static void debug_sync_execute(THD *thd, st_debug_sync_action *action) if (action->execute) { const char *old_proc_info; + LINT_INIT(old_proc_info); action->execute--; |