advapi32: Fix a typo.

This commit is contained in:
Andrew Talbot 2007-11-28 22:17:05 +00:00 committed by Alexandre Julliard
parent 33a4fe19de
commit fd03f4ae86
1 changed files with 1 additions and 1 deletions

View File

@ -1401,7 +1401,7 @@ static VOID ADVAPI_ApplyRestrictions( DWORD dwFlags, DWORD dwType,
if ((dwFlags & RRF_RT_DWORD) == RRF_RT_DWORD) if ((dwFlags & RRF_RT_DWORD) == RRF_RT_DWORD)
cbExpect = 4; cbExpect = 4;
else if ((dwFlags & RRF_RT_DWORD) == RRF_RT_QWORD) else if ((dwFlags & RRF_RT_QWORD) == RRF_RT_QWORD)
cbExpect = 8; cbExpect = 8;
if (cbExpect && cbData != cbExpect) if (cbExpect && cbData != cbExpect)