diff options
author | unknown <msvensson@pilot.(none)> | 2007-08-28 11:39:29 +0200 |
---|---|---|
committer | unknown <msvensson@pilot.(none)> | 2007-08-28 11:39:29 +0200 |
commit | 3a53dbbae5825d8e05b47f94e7e4c275409c593e (patch) | |
tree | 10732d89ecde648109c9cc61e63585429421d13d /client | |
parent | 68eeedfded852571956c5e53c915262611f96130 (diff) | |
download | mariadb-git-3a53dbbae5825d8e05b47f94e7e4c275409c593e.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 3b83fdb56fc..e851c9dac89 100644 --- a/client/mysqltest.c +++ b/client/mysqltest.c @@ -1987,7 +1987,7 @@ void var_set_query_get_value(struct st_command *command, VAR *var) while ((row= mysql_fetch_row(res))) { - if (++rows == (ulong) row_no) + if (++rows == row_no) { DBUG_PRINT("info", ("At row %ld, column %d is '%s'", |