2002-01-14 21:53 UTC-0500 Paul Tucker <ptucker@sympatico.ca>

* source\common\hbffind.c
    * replaced 3 literals with proper defines
    * minor formatting.
This commit is contained in:
Paul Tucker
2002-01-15 02:59:34 +00:00
parent 3f5f68133f
commit a00dfd61b2

View File

@@ -600,8 +600,8 @@ PHB_FFIND hb_fsFindFirst( const char * pszFileName, USHORT uiAttr )
if( info->hFindFile != INVALID_HANDLE_VALUE )
{
if( info->dwAttr == 0 ||
( info->pFindFileData.dwFileAttributes == FILE_ATTRIBUTE_NORMAL ) ||
( info->dwAttr & info->pFindFileData.dwFileAttributes ))
( info->pFindFileData.dwFileAttributes == FILE_ATTRIBUTE_NORMAL ) ||
( info->dwAttr & info->pFindFileData.dwFileAttributes ))
{
bFound = TRUE;
}