summaryrefslogtreecommitdiff
path: root/cmd-line-utils
diff options
context:
space:
mode:
authorunknown <joerg@trift2.>2007-01-19 11:58:29 +0100
committerunknown <joerg@trift2.>2007-01-19 11:58:29 +0100
commit87a569f3c0366621dac586c4514d1370080f9478 (patch)
tree36ce77a33c5cd48c1bf87d9ff3a4efddf8bf6475 /cmd-line-utils
parent12af490a29faae63bf510f356f9dfdb24834be1a (diff)
downloadmariadb-git-87a569f3c0366621dac586c4514d1370080f9478.tar.gz
cmd-line-utils/readline/undo.c : Replace an "uint" cast by the expanded "unsigned int" (compile problem on QNX).
cmd-line-utils/readline/undo.c: Replace an "uint" cast by the expanded "unsigned int", because there are platforms (QNX) on which "uint" is not defined in the "readline" library (and so building it failed, version 5.0.34).
Diffstat (limited to 'cmd-line-utils')
-rw-r--r--cmd-line-utils/readline/undo.c2
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;