From a00dfd61b2f32e63391ddfdca23e938176604883 Mon Sep 17 00:00:00 2001 From: Paul Tucker Date: Tue, 15 Jan 2002 02:59:34 +0000 Subject: [PATCH] 2002-01-14 21:53 UTC-0500 Paul Tucker * source\common\hbffind.c * replaced 3 literals with proper defines * minor formatting. --- harbour/source/common/hbffind.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/harbour/source/common/hbffind.c b/harbour/source/common/hbffind.c index bb05ad11a2..d19a829ae6 100644 --- a/harbour/source/common/hbffind.c +++ b/harbour/source/common/hbffind.c @@ -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; }