diff options
author | Vladislav Vaintroub <vvaintroub@mysql.com> | 2010-01-19 16:31:21 +0100 |
---|---|---|
committer | Vladislav Vaintroub <vvaintroub@mysql.com> | 2010-01-19 16:31:21 +0100 |
commit | 8bffa163f80aedb4e9c01f1652c1e98fa4be68a8 (patch) | |
tree | 3a654eb9e366f96de7f87db2448355e841cf2f62 /mysys | |
parent | 6b596534c024b2380e8a20473d4953d348956c37 (diff) | |
download | mariadb-git-8bffa163f80aedb4e9c01f1652c1e98fa4be68a8.tar.gz |
Fix various compiler/OS compatibility errors
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 73dab610bed..c332c82d17a 100644 --- a/mysys/typelib.c +++ b/mysys/typelib.c @@ -326,7 +326,7 @@ my_ulonglong find_set_from_flags(const TYPELIB *lib, uint default_name, my_ulonglong flags_to_set= 0, flags_to_clear= 0, res; my_bool set_defaults= 0; - *err_pos= 0; // No error yet + *err_pos= 0; /* No error yet */ if (str != end) { const char *start= str; |