mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 00:11:07 -05:00
Workaround a GCC warning to unbreak ARM build.
Reported by: ian
This commit is contained in:
parent
df1dff36ff
commit
fd13916c8b
1 changed files with 1 additions and 1 deletions
|
|
@ -4503,7 +4503,7 @@ form_driver_w(FORM *form, int type, wchar_t c)
|
|||
|
||||
assert(form->page);
|
||||
|
||||
if (c == FIRST_ACTIVE_MAGIC)
|
||||
if (c == (wchar_t)FIRST_ACTIVE_MAGIC)
|
||||
{
|
||||
form->current = _nc_First_Active_Field(form);
|
||||
RETURN(E_OK);
|
||||
|
|
|
|||
Loading…
Reference in a new issue