diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2019-04-02 13:46:36 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2019-04-02 13:46:36 +0300 |
commit | 5633f83ca42ac6f035cf2c18ae11b3b7639b1f7e (patch) | |
tree | 8d6d40d675c9cd46ca7ea1a75558f6bbc28039af /storage/innobase/include | |
parent | 8650848ec31039fb95dc74ca3b40904b941eaedd (diff) | |
download | mariadb-git-5633f83ca42ac6f035cf2c18ae11b3b7639b1f7e.tar.gz |
Fix integer type mismatch
Diffstat (limited to 'storage/innobase/include')
-rw-r--r-- | storage/innobase/include/pars0sym.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/innobase/include/pars0sym.h b/storage/innobase/include/pars0sym.h index c9a5bb5fac2..5108db79322 100644 --- a/storage/innobase/include/pars0sym.h +++ b/storage/innobase/include/pars0sym.h @@ -1,7 +1,7 @@ /***************************************************************************** Copyright (c) 1997, 2016, Oracle and/or its affiliates. All Rights Reserved. -Copyright (c) 2017, 2018, MariaDB Corporation. +Copyright (c) 2017, 2019, 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 @@ -224,7 +224,7 @@ struct sym_tab_t{ /*!< SQL string to parse */ size_t string_len; /*!< SQL string length */ - int next_char_pos; + size_t next_char_pos; /*!< position of the next character in sql_string to give to the lexical analyzer */ |