diff options
author | jimw@mysql.com <> | 2005-08-30 12:24:37 -0700 |
---|---|---|
committer | jimw@mysql.com <> | 2005-08-30 12:24:37 -0700 |
commit | 0dc444ec4efc8d4adcf7124a276c86859a1b3bcb (patch) | |
tree | c95133411d5cb26fe18db49056eeebdad5833e3b /tests | |
parent | 16e30aaf68012e4c4b0a7e7beb65dec4cfa60e3b (diff) | |
download | mariadb-git-0dc444ec4efc8d4adcf7124a276c86859a1b3bcb.tar.gz |
Fix incorrect spellings of "dropped" in source and tests. (Bug #12828)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/mysql_client_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/mysql_client_test.c b/tests/mysql_client_test.c index 64c5e7edaf9..ffcf5b6f34d 100644 --- a/tests/mysql_client_test.c +++ b/tests/mysql_client_test.c @@ -9177,7 +9177,7 @@ static void test_create_drop() rc= mysql_stmt_execute(stmt_drop); check_execute(stmt_drop, rc); if (!opt_silent) - fprintf(stdout, "droped %i\n", i); + fprintf(stdout, "dropped %i\n", i); rc= mysql_stmt_execute(stmt_create_select); check_execute(stmt_create, rc); @@ -9192,7 +9192,7 @@ static void test_create_drop() rc= mysql_stmt_execute(stmt_drop); check_execute(stmt_drop, rc); if (!opt_silent) - fprintf(stdout, "droped %i\n", i); + fprintf(stdout, "dropped %i\n", i); } mysql_stmt_close(stmt_create); |