summaryrefslogtreecommitdiff
path: root/storage/innobase/include
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2019-04-02 13:46:36 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2019-04-02 13:46:36 +0300
commit5633f83ca42ac6f035cf2c18ae11b3b7639b1f7e (patch)
tree8d6d40d675c9cd46ca7ea1a75558f6bbc28039af /storage/innobase/include
parent8650848ec31039fb95dc74ca3b40904b941eaedd (diff)
downloadmariadb-git-5633f83ca42ac6f035cf2c18ae11b3b7639b1f7e.tar.gz
Fix integer type mismatch
Diffstat (limited to 'storage/innobase/include')
-rw-r--r--storage/innobase/include/pars0sym.h4
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 */