shell32: Use BOOL type where appropriate.

This commit is contained in:
Frédéric Delanoy 2013-11-19 01:05:57 +01:00 committed by Alexandre Julliard
parent a10dfea044
commit 6021107afd
1 changed files with 2 additions and 2 deletions

View File

@ -424,10 +424,10 @@ BOOL HCR_GetFolderAttributes(LPCITEMIDLIST pidlFolder, LPDWORD pdwAttributes)
TRACE("(pidlFolder=%p, pdwAttributes=%p)\n", pidlFolder, pdwAttributes);
if (!_ILIsPidlSimple(pidlFolder)) {
static int firstHit = 1;
static BOOL firstHit = TRUE;
if (firstHit) {
ERR("should be called for simple PIDL's only!\n");
firstHit = 0;
firstHit = FALSE;
}
return FALSE;
}