Skip to content

Commit 1fd3cc8

Browse files
committed
Fix a compiler warning.
1 parent 17a1b19 commit 1fd3cc8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

storage/innobase/dict/dict0load.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/*****************************************************************************
22
33
Copyright (c) 1996, 2013, Innobase Oy. All Rights Reserved.
4+
Copyright (c) 2017, MariaDB Corporation.
45
56
This program is free software; you can redistribute it and/or modify it under
67
the terms of the GNU General Public License as published by the Free Software
@@ -1838,7 +1839,7 @@ dict_load_table(
18381839
if (!fil_open_single_table_tablespace(
18391840
TRUE, table->space,
18401841
table->flags == DICT_TF_COMPACT ? 0 :
1841-
table->flags & ~(~0 << DICT_TF_BITS), name)) {
1842+
table->flags & ~(~0U << DICT_TF_BITS), name)) {
18421843
/* We failed to find a sensible
18431844
tablespace file */
18441845

0 commit comments

Comments
 (0)