Commit 71f5f563 authored by unknown's avatar unknown

fil0fil.c:

  Visual C++ apparently does not know what -1LL (= -1 in longlong type) means


innobase/fil/fil0fil.c:
  Visual C++ apparently does not know what -1LL (= -1 in longlong type) means
parent 1fca48bd
......@@ -2466,7 +2466,8 @@ fil_tablespace_deleted_or_being_deleted_in_mem(
return(TRUE);
}
if (version != -1LL && space->tablespace_version != version) {
if (version != ((ib_longlong)-1)
&& space->tablespace_version != version) {
mutex_exit(&(system->mutex));
return(TRUE);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment