diff options
author | unknown <msvensson@pilot.(none)> | 2007-08-08 09:31:45 +0200 |
---|---|---|
committer | unknown <msvensson@pilot.(none)> | 2007-08-08 09:31:45 +0200 |
commit | 79b0f8d30d36d7f925ddc38a10f58c183b91bc4f (patch) | |
tree | 3e2954f4ce35ff94dad3fe432764dc6f7948561d /client | |
parent | 26e4ea620bb01bfa27cdcb873274d3372b20f5db (diff) | |
download | mariadb-git-79b0f8d30d36d7f925ddc38a10f58c183b91bc4f.tar.gz |
Fix warning
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqltest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysqltest.c b/client/mysqltest.c index 4951e88849f..e5daae2ffbe 100644 --- a/client/mysqltest.c +++ b/client/mysqltest.c @@ -663,7 +663,7 @@ static void show_warnings_before_error(MYSQL* mysql) for(i= 0; i < num_fields; i++) { - fprintf(stderr, "%.*s ", lengths[i], + fprintf(stderr, "%.*s ", (int)lengths[i], row[i] ? row[i] : "NULL"); } fprintf(stderr, "\n"); |