Skip to content

Commit

Permalink
compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
vuvova committed Aug 12, 2018
1 parent 97b563b commit 456517b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugin/handler_socket/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ IF(WIN32)
RETURN()
ENDIF()

MY_CHECK_AND_SET_COMPILER_FLAG("-Wdeprecated-declarations")
MY_CHECK_AND_SET_COMPILER_FLAG("-Wno-deprecated-declarations")

INCLUDE_DIRECTORIES(libhsclient)

Expand Down
2 changes: 1 addition & 1 deletion storage/innobase/fts/fts0opt.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2657,7 +2657,7 @@ fts_optimize_new_table(
empty_slot = i;
} else if (slot->table == table) {
/* Already exists in our optimize queue. */
ut_ad(slot->table_id = table->id);
ut_ad(slot->table_id == table->id);
return(FALSE);
}
}
Expand Down

0 comments on commit 456517b

Please sign in to comment.