diff options
author | joerg@trift2. <> | 2007-01-19 11:58:29 +0100 |
---|---|---|
committer | joerg@trift2. <> | 2007-01-19 11:58:29 +0100 |
commit | 9d4f594ac9829619636a177da6a2e7d0960783c9 (patch) | |
tree | 36ce77a33c5cd48c1bf87d9ff3a4efddf8bf6475 /cmd-line-utils | |
parent | f5e2857b0b732eaa8dcea791e7e8e483227a63b3 (diff) | |
download | mariadb-git-9d4f594ac9829619636a177da6a2e7d0960783c9.tar.gz |
cmd-line-utils/readline/undo.c : Replace an "uint" cast by the expanded "unsigned int" (compile problem on QNX).
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; |