diff options
author | Staale Smedseng <staale.smedseng@sun.com> | 2009-09-23 15:21:29 +0200 |
---|---|---|
committer | Staale Smedseng <staale.smedseng@sun.com> | 2009-09-23 15:21:29 +0200 |
commit | 8b9843408d8b1068798228f397cd1a20fa56f504 (patch) | |
tree | be24d592bff31a5a07c28cb307d81ed4f01b925a /unittest | |
parent | 613297ff1e66a0fcf517e4e1bcf2a573d2e2c815 (diff) | |
download | mariadb-git-8b9843408d8b1068798228f397cd1a20fa56f504.tar.gz |
Bug #43414 Parenthesis (and other) warnings compiling MySQL
with gcc 4.3.2
Cleaning up warnings not present in 5.0.
Diffstat (limited to 'unittest')
-rw-r--r-- | unittest/mysys/base64-t.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittest/mysys/base64-t.c b/unittest/mysys/base64-t.c index 1622fe22b4d..e1a40f89ff0 100644 --- a/unittest/mysys/base64-t.c +++ b/unittest/mysys/base64-t.c @@ -84,7 +84,7 @@ main(void) unsigned char c= dst[k+l]; sprintf(buf, "%.2x ", (unsigned)c); } - diag(buf); + diag("%s", buf); } diag("src length: %.8x, dst length: %.8x\n", (uint) src_len, (uint) dst_len); |