diff options
author | sayantan.dutta@oracle.com <> | 2012-03-14 16:01:40 +0530 |
---|---|---|
committer | sayantan.dutta@oracle.com <> | 2012-03-14 16:01:40 +0530 |
commit | 7a4e8d9959ad3fcc2396e0290b5d20e56b8b693f (patch) | |
tree | 89ebb38db61e48591b92d46649dbd989acd391fb /unittest | |
parent | d93559f9ffc6796fdc78b4cebde316465ad66676 (diff) | |
download | mariadb-git-7a4e8d9959ad3fcc2396e0290b5d20e56b8b693f.tar.gz |
BUG #13619394: "MAKE TEST" FAILS ON "MY_VSNPRINTF"
Diffstat (limited to 'unittest')
-rw-r--r-- | unittest/mysys/my_vsnprintf-t.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittest/mysys/my_vsnprintf-t.c b/unittest/mysys/my_vsnprintf-t.c index 06f6878826a..0085c4c1ebe 100644 --- a/unittest/mysys/my_vsnprintf-t.c +++ b/unittest/mysys/my_vsnprintf-t.c @@ -155,7 +155,7 @@ int main(void) "conn %ld to: '%-.64s' user: '%-.32s' host: '%-.64s' (%-.64s)", 1L, NULL, NULL, NULL, NULL); test1("Hello string `I am a string`", - "Hello string %`s", "I am a string"); + "Hello string `%s`", "I am a string"); test1("Hello TEST", "Hello %05s", "TEST"); test1("My `Q` test", |