diff options
author | Sergei Golubchik <serg@mysql.com> | 2009-11-04 00:15:16 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mysql.com> | 2009-11-04 00:15:16 +0100 |
commit | 1a8f08b006616b0bb2a9e9e13969ebe406e9e3f2 (patch) | |
tree | 4347e54ceaf670bb8220d23371be7bd3ed469052 /include | |
parent | e10157122697f93846fe376e47f3d823b051a8ec (diff) | |
download | mariadb-git-1a8f08b006616b0bb2a9e9e13969ebe406e9e3f2.tar.gz |
unit tests for my_vsnprintf,
bug fixes for my_vsnprintf
include/mysql/service_my_snprintf.h:
typo fixed
strings/my_vsnprintf.c:
bugfixes:
correct handling of %08p (%p with zero-padding)
assert crash on .*$n (positional argument as precision)
Diffstat (limited to 'include')
-rw-r--r-- | include/mysql/service_my_snprintf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mysql/service_my_snprintf.h b/include/mysql/service_my_snprintf.h index a9f205fc4de..ad344864c34 100644 --- a/include/mysql/service_my_snprintf.h +++ b/include/mysql/service_my_snprintf.h @@ -42,7 +42,7 @@ % <flag> <width> <precision> <length modifier> <format> where everithing but the format is optional. - Three one-character flags are regognized: + Three one-character flags are recognized: '0' has the standard zero-padding semantics; '-' is parsed, but silently ignored; '`' (backtick) is only supported for strings (%s) and means that the |