diff options
author | unknown <kroki/tomash@moonlight.intranet> | 2006-11-22 16:47:12 +0300 |
---|---|---|
committer | unknown <kroki/tomash@moonlight.intranet> | 2006-11-22 16:47:12 +0300 |
commit | 8d82e99c99d0440b0b78dc84e71a711087de6084 (patch) | |
tree | 77c2dfb8750b33c5aa09528bfca80b7b3951bea5 | |
parent | 9bdd7750673ee05dc3ae64222b1f9a0bdbf598e6 (diff) | |
download | mariadb-git-8d82e99c99d0440b0b78dc84e71a711087de6084.tar.gz |
Cleanup: remove const.
-rw-r--r-- | tests/mysql_client_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mysql_client_test.c b/tests/mysql_client_test.c index 4bc1fd5f9d4..98d7182d46f 100644 --- a/tests/mysql_client_test.c +++ b/tests/mysql_client_test.c @@ -12045,7 +12045,7 @@ static void test_bug21635() "COUNT(i)", "COUNT(i)", "COUNT(i) AS A3", "A3", }; - const char *query_end; + char *query_end; MYSQL_RES *result; MYSQL_FIELD *field; unsigned int field_count, i; |