diff options
author | tsmith@ramayana.hindu.god <> | 2007-10-09 18:45:29 -0600 |
---|---|---|
committer | tsmith@ramayana.hindu.god <> | 2007-10-09 18:45:29 -0600 |
commit | d207867cf53b9db500e6f93b93b386c1b58cae34 (patch) | |
tree | 6ab5b73a880c1a622e2877fea8dc6e8e383e3730 /client | |
parent | d5740ef0511eb42b9db85008d79370769a73e3f1 (diff) | |
download | mariadb-git-d207867cf53b9db500e6f93b93b386c1b58cae34.tar.gz |
Fix compiler warning (use correct data type)
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqltest.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/mysqltest.c b/client/mysqltest.c index 335a1590e1b..39fe05e4928 100644 --- a/client/mysqltest.c +++ b/client/mysqltest.c @@ -1562,7 +1562,8 @@ void check_result(DYNAMIC_STRING* ds) Result mismatched, dump results to .reject file and then show the diff */ - char reject_file[FN_REFLEN], reject_length; + char reject_file[FN_REFLEN]; + size_t reject_length; dirname_part(reject_file, result_file_name, &reject_length); if (access(reject_file, W_OK) == 0) |