diff options
author | Davi Arnaut <Davi.Arnaut@Sun.COM> | 2009-11-25 11:09:12 -0200 |
---|---|---|
committer | Davi Arnaut <Davi.Arnaut@Sun.COM> | 2009-11-25 11:09:12 -0200 |
commit | 8022ff5cf5835d91278307cc1f92a48238084fbd (patch) | |
tree | f13519c84a430a7a4ace8577cfb5bd7f4f16ce63 /mysys | |
parent | 356b3df7430a46b3472682a827e357b3f7482257 (diff) | |
parent | fb436977421923fff7b3158c57c430004b09bc2b (diff) | |
download | mariadb-git-8022ff5cf5835d91278307cc1f92a48238084fbd.tar.gz |
Automerge.
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); |