diff options
author | monty@mysql.com <> | 2005-02-25 16:53:22 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2005-02-25 16:53:22 +0200 |
commit | 0a6b7aedb2cec716b98349765bfa369354787b25 (patch) | |
tree | 9b48fa5a8476d449ea4512314b86f9704517cd0c /innobase/dict/dict0load.c | |
parent | cd78e701a5c83394c360f6ba9a1783c7b950e8ee (diff) | |
download | mariadb-git-0a6b7aedb2cec716b98349765bfa369354787b25.tar.gz |
Remove compiler warnings and remove not used variables
(Found during build process)
Diffstat (limited to 'innobase/dict/dict0load.c')
-rw-r--r-- | innobase/dict/dict0load.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/innobase/dict/dict0load.c b/innobase/dict/dict0load.c index 7fd1ca08c04..1f4ebe810b4 100644 --- a/innobase/dict/dict0load.c +++ b/innobase/dict/dict0load.c @@ -184,7 +184,7 @@ loop: if (table == NULL) { fputs("InnoDB: Failed to load table ", stderr); - ut_print_namel(stderr, NULL, field, len); + ut_print_namel(stderr, NULL, (char*) field, len); putc('\n', stderr); } else { /* The table definition was corrupt if there |