mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +00: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