mirror of
https://github.com/reactos/reactos.git
synced 2026-05-23 07:40:09 +08:00
More very serious issue pointed out by gcc
This commit is contained in:
@@ -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]);
|
||||
|
||||
Reference in New Issue
Block a user