From 1fd3cc8c1f2bfe052c0d6672d65b6d0ac1c87e0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20M=C3=A4kel=C3=A4?= Date: Wed, 8 Mar 2017 10:06:34 +0200 Subject: Fix a compiler warning. --- storage/innobase/dict/dict0load.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'storage/innobase') diff --git a/storage/innobase/dict/dict0load.c b/storage/innobase/dict/dict0load.c index d7168b6e4bb..07910328952 100644 --- a/storage/innobase/dict/dict0load.c +++ b/storage/innobase/dict/dict0load.c @@ -1,6 +1,7 @@ /***************************************************************************** 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 the terms of the GNU General Public License as published by the Free Software @@ -1838,7 +1839,7 @@ err_exit: if (!fil_open_single_table_tablespace( TRUE, table->space, 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 tablespace file */ -- cgit v1.2.1