diff options
author | monty@mysql.com/nosik.monty.fi <> | 2006-11-28 05:43:30 +0200 |
---|---|---|
committer | monty@mysql.com/nosik.monty.fi <> | 2006-11-28 05:43:30 +0200 |
commit | 93f246d4c196d813f3870586534372d13b51fb03 (patch) | |
tree | 2e0d5a02aadc787a61070b00d83feee2846f39e1 /cmd-line-utils | |
parent | 73238029bccd7dae1dec88fa634106e9693ac65f (diff) | |
download | mariadb-git-93f246d4c196d813f3870586534372d13b51fb03.tar.gz |
Fixed portablity problem
Removed warnings from mysqltest scripts
Diffstat (limited to 'cmd-line-utils')
-rw-r--r-- | cmd-line-utils/readline/undo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-line-utils/readline/undo.c b/cmd-line-utils/readline/undo.c index b4b5a6511ba..4d256f492b8 100644 --- a/cmd-line-utils/readline/undo.c +++ b/cmd-line-utils/readline/undo.c @@ -175,7 +175,7 @@ _rl_fix_last_undo_of_type (type, start, end) for (rl = rl_undo_list; rl; rl = rl->next) { - if (rl->what == (uint) type) + if (rl->what == (unsigned int) type) { rl->start = start; rl->end = end; |