diff options
author | Georgi Kodinov <joro@sun.com> | 2009-11-20 15:39:15 +0200 |
---|---|---|
committer | Georgi Kodinov <joro@sun.com> | 2009-11-20 15:39:15 +0200 |
commit | 2961cf6787c44937c4187ff9b7abedfa8f22b076 (patch) | |
tree | c812710cb31d65f83d4fb7e6d62c32c23e828375 /mysys | |
parent | ff3b424565cfb27c2da63daa450578fc64e1083d (diff) | |
parent | 2a6b6d17b8b2951757c7b7fc17ba52d4897d69b7 (diff) | |
download | mariadb-git-2961cf6787c44937c4187ff9b7abedfa8f22b076.tar.gz |
merge
Diffstat (limited to 'mysys')
-rw-r--r-- | mysys/typelib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/typelib.c b/mysys/typelib.c index a0fe8a96a89..cb72c91e20d 100644 --- a/mysys/typelib.c +++ b/mysys/typelib.c @@ -184,7 +184,7 @@ my_ulonglong find_typeset(char *x, TYPELIB *lib, int *err) i= x; while (*x && *x != field_separator) x++; - if (x[0] && x[1]) // skip separator if found + if (x[0] && x[1]) /* skip separator if found */ x++; if ((find= find_type(i, lib, 2 | 8) - 1) < 0) DBUG_RETURN(0); |