diff options
author | msvensson@pilot.(none) <> | 2007-08-08 09:31:45 +0200 |
---|---|---|
committer | msvensson@pilot.(none) <> | 2007-08-08 09:31:45 +0200 |
commit | 8d8123341bba319336e383fe4bfc5b90ed7ca42a (patch) | |
tree | 3e2954f4ce35ff94dad3fe432764dc6f7948561d /client | |
parent | 7c0341376dc45a9f2803ca4da1a93e6096838a43 (diff) | |
download | mariadb-git-8d8123341bba319336e383fe4bfc5b90ed7ca42a.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"); |