diff options
author | Bjorn Munch <bjorn.munch@oracle.com> | 2012-03-16 10:09:10 +0100 |
---|---|---|
committer | Bjorn Munch <bjorn.munch@oracle.com> | 2012-03-16 10:09:10 +0100 |
commit | 6f49b9841b8d661e6beabc0731d81a7eea9c4e7d (patch) | |
tree | d48538b54bf5ba38fb78f48d21c29450daa1a603 /unittest | |
parent | a2d6f81a02be9259a1befc0f8ab18d0e351ad47c (diff) | |
download | mariadb-git-6f49b9841b8d661e6beabc0731d81a7eea9c4e7d.tar.gz |
BUG #13619394: fixing incorrect revert
Doing this for Sayantan whose VPN is not working ATM
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 dcaa4336b9d..06f6878826a 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", |