mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
[SHELL32_APITEST] ShellHook testcase Fix compiler error (addendum to #3289)
addendum to 0.4.15-dev-1123-g 0089291751
Fix a compiler error on RosBE2.1.6 GCC4.7.2
that I got when I merged this test back to 0.4.14RC:
C:/0414rls/reactos/modules/rostests/apitests/shell32/ShellHook.cpp: In function
'LRESULT WindowProc(HWND, UINT, WPARAM, LPARAM)':
C:/0414rls/reactos/modules/rostests/apitests/shell32/ShellHook.cpp:339:26: error
: comparison between signed and unsigned integer expressions [-Werror=sign-compa
re]
cc1plus.exe: all warnings being treated as errors
ninja: build stopped: subcommand failed.
This commit is contained in:
parent
6ae7fc2b04
commit
d30a1673d4
1 changed files with 1 additions and 1 deletions
|
@ -336,7 +336,7 @@ WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
|||
INT i = (INT)wParam - ID_BURNING;
|
||||
DoTestEntryPart2(&s_entries[i]);
|
||||
++i;
|
||||
if (i == s_num_entries)
|
||||
if (i == (INT)s_num_entries)
|
||||
{
|
||||
PostQuitMessage(0);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue