mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
QNX does not know "uint", so the cast is rewritten as "unsigned int".
This commit is contained in:
@ -478,7 +478,7 @@ el_gets(EditLine *el, int *nread)
|
||||
#endif /* DEBUG_READ */
|
||||
break;
|
||||
}
|
||||
if ((uint)cmdnum >= el->el_map.nfunc) { /* BUG CHECK command */
|
||||
if ((unsigned int)cmdnum >= el->el_map.nfunc) { /* BUG CHECK command */
|
||||
#ifdef DEBUG_EDIT
|
||||
(void) fprintf(el->el_errfile,
|
||||
"ERROR: illegal command from key 0%o\r\n", ch);
|
||||
|
Reference in New Issue
Block a user