mirror of
https://github.com/MariaDB/server.git
synced 2026-05-10 17:14:30 +02:00
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).
This commit is contained in:
parent
12af490a29
commit
87a569f3c0
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue