diff options
author | monty@mysql.com <> | 2006-06-23 02:49:19 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2006-06-23 02:49:19 +0300 |
commit | 4697deb43629d9ae9f087d84cb4bb933a96f7eb1 (patch) | |
tree | 58ab5561c26c742cf51ff01378a1d269f85b5637 /client | |
parent | 649157954b79513263ecfa05ec57fce9999a0b7b (diff) | |
download | mariadb-git-4697deb43629d9ae9f087d84cb4bb933a96f7eb1.tar.gz |
Remove compiler warnings
Fixed wrong table flags type in ndbcluster that caused previous commit to fail
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqltest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/mysqltest.c b/client/mysqltest.c index 11e2cc0048e..b21e3883631 100644 --- a/client/mysqltest.c +++ b/client/mysqltest.c @@ -4095,8 +4095,8 @@ static void append_metadata(DYNAMIC_STRING *ds, static void append_info(DYNAMIC_STRING *ds, ulonglong affected_rows, const char *info) { - char buf[40]; - sprintf(buf,"affected rows: %llu\n", affected_rows); + char buf[40], buff2[21]; + sprintf(buf,"affected rows: %s\n", llstr(affected_rows, buff2)); dynstr_append(ds, buf); if (info) { |