diff options
author | unknown <tsmith@ramayana.hindu.god> | 2007-10-09 18:45:29 -0600 |
---|---|---|
committer | unknown <tsmith@ramayana.hindu.god> | 2007-10-09 18:45:29 -0600 |
commit | ec7baf6eb12f558e908ad50e1948de3a491084c6 (patch) | |
tree | 6ab5b73a880c1a622e2877fea8dc6e8e383e3730 /client | |
parent | 34deaeb47ee6be4b6d13693af4c24bb70d09ee0f (diff) | |
download | mariadb-git-ec7baf6eb12f558e908ad50e1948de3a491084c6.tar.gz |
Fix compiler warning (use correct data type)
client/mysqltest.c:
Use correct data type for dummy variable passed to dirname_part()
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) |