Commit 9d4f594a authored by joerg@trift2.'s avatar joerg@trift2.
Browse files

cmd-line-utils/readline/undo.c : Replace an "uint" cast by the expanded...

cmd-line-utils/readline/undo.c  :    Replace an "uint" cast by the expanded "unsigned int" (compile problem on QNX).
parent f5e2857b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;