From 8ad20c906ba671de283d133e25d2a3e8dd76c178 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 19 Jan 2007 11:58:29 +0100 Subject: 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). --- cmd-line-utils/readline/undo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd-line-utils') 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; -- cgit v1.2.1