Browse Source

fix breakage on qnx

cmd-line-utils/readline/undo.c:
  cast breaks on qnx
pull/374/head
unknown 19 years ago
parent
commit
1a8617851a
  1. 2
      cmd-line-utils/readline/undo.c

2
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;

Loading…
Cancel
Save