mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
More very serious issue pointed out by gcc
This commit is contained in:
parent
1d3fb3e370
commit
60e89359c1
1 changed files with 1 additions and 1 deletions
|
@ -1868,7 +1868,7 @@ public:
|
|||
|
||||
if (current < 0)
|
||||
current = (_countof(Controls) - 1);
|
||||
else if (current >= _countof(Controls))
|
||||
else if ((UINT)current >= _countof(Controls))
|
||||
current = 0;
|
||||
|
||||
::SetFocus(Controls[current]);
|
||||
|
|
Loading…
Reference in a new issue