comctl32: Remove variable iRet which is not really used from test_EnumMRUList.

This commit is contained in:
Gerald Pfeifer 2010-04-23 20:56:36 +02:00 committed by Alexandre Julliard
parent 8101a13eaf
commit 414b506909
1 changed files with 2 additions and 4 deletions

View File

@ -471,11 +471,9 @@ static void test_EnumMRUList(void)
/* NULL handle */
if (0)
{
INT iRet;
/* crashes on NT4, passed on Win2k, XP, 2k3, Vista, 2k8 */
iRet = pEnumMRUList(NULL, 0, NULL, 0);
iRet = pEnumMRUListW(NULL, 0, NULL, 0);
pEnumMRUList(NULL, 0, NULL, 0);
pEnumMRUListW(NULL, 0, NULL, 0);
}
}