Commit 1fd3cc8c authored by Marko Mäkelä's avatar Marko Mäkelä

Fix a compiler warning.

parent 17a1b194
/***************************************************************************** /*****************************************************************************
Copyright (c) 1996, 2013, Innobase Oy. All Rights Reserved. Copyright (c) 1996, 2013, Innobase Oy. All Rights Reserved.
Copyright (c) 2017, MariaDB Corporation.
This program is free software; you can redistribute it and/or modify it under This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software the terms of the GNU General Public License as published by the Free Software
...@@ -1838,7 +1839,7 @@ dict_load_table( ...@@ -1838,7 +1839,7 @@ dict_load_table(
if (!fil_open_single_table_tablespace( if (!fil_open_single_table_tablespace(
TRUE, table->space, TRUE, table->space,
table->flags == DICT_TF_COMPACT ? 0 : table->flags == DICT_TF_COMPACT ? 0 :
table->flags & ~(~0 << DICT_TF_BITS), name)) { table->flags & ~(~0U << DICT_TF_BITS), name)) {
/* We failed to find a sensible /* We failed to find a sensible
tablespace file */ tablespace file */
......
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