https://git.reactos.org/?p=reactos.git;a=commitdiff;h=309f7e94430f65e7270e8…
commit 309f7e94430f65e7270e82a1646804e9d610367a
Author: Mark Jansen <mark.jansen(a)reactos.org>
AuthorDate: Sun Feb 23 22:36:03 2020 +0100
Commit: Mark Jansen <mark.jansen(a)reactos.org>
CommitDate: Sun Feb 23 22:36:03 2020 +0100
gcc is crying again
---
base/applications/rapps/gui.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/base/applications/rapps/gui.cpp b/base/applications/rapps/gui.cpp
index 182d1068665..0804b4a614f 100644
--- a/base/applications/rapps/gui.cpp
+++ b/base/applications/rapps/gui.cpp
@@ -1857,7 +1857,7 @@ public:
// When there is no control found, go to the first or last (depending on tab vs
shift-tab)
int current = direction > 0 ? 0 : (_countof(Controls) - 1);
HWND hActive = ::GetFocus();
- for (int n = 0; n < _countof(Controls); ++n)
+ for (size_t n = 0; n < _countof(Controls); ++n)
{
if (hActive == Controls[n])
{