summaryrefslogtreecommitdiff
path: root/mysys
diff options
context:
space:
mode:
authorunknown <timothy.smith@sun.com>2009-11-05 21:22:17 +0100
committerMySQL Build Team <build@mysql.com>2009-11-05 21:22:17 +0100
commit8799820faf2a10b6ed406bde7df885caf144548a (patch)
tree914440a9e0a07ed30be410832621551c5bc272e9 /mysys
parent9b7a7f06c1a56f49a4528f019ec821d3a01934b6 (diff)
downloadmariadb-git-8799820faf2a10b6ed406bde7df885caf144548a.tar.gz
Use C comments in C code
Diffstat (limited to 'mysys')
-rw-r--r--mysys/typelib.c2
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);