shell32: Use BOOL type where appropriate.
This commit is contained in:
parent
a10dfea044
commit
6021107afd
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue