diff --git a/flaim/src/kybuild.cpp b/flaim/src/kybuild.cpp index 25b9c0c..f8030cb 100644 --- a/flaim/src/kybuild.cpp +++ b/flaim/src/kybuild.cpp @@ -528,14 +528,13 @@ FSTATIC RCODE flmProcessIndexedFld( } else { - // uiContainerNum == 0, indexing all containers if (pIxd->uiFlags & IXD_OFFLINE) { if (uiContainerNum > pIxd->uiLastContainerIndexed || - uiContainerNum == pIxd->uiLastContainerIndexed && - uiDrn > pIxd->uiLastDrnIndexed) + (uiContainerNum == pIxd->uiLastContainerIndexed && + uiDrn > pIxd->uiLastDrnIndexed)) { continue; } diff --git a/ftk/src/ftk.h b/ftk/src/ftk.h index 0ab31d9..f6892d0 100644 --- a/ftk/src/ftk.h +++ b/ftk/src/ftk.h @@ -3950,7 +3950,7 @@ } F_TMSTAMP; #define f_timeIsLeapYear(year) \ - ((((year) & 0x03) == 0) && (((year) % 100) != 0) || (((year) % 400) == 0)) + (((((year) & 0x03) == 0) && (((year) % 100) != 0)) || (((year) % 400) == 0)) void f_timeGetSeconds( FLMUINT * puiSeconds); diff --git a/xflaim/src/scache.cpp b/xflaim/src/scache.cpp index c1eb780..66491ad 100644 --- a/xflaim/src/scache.cpp +++ b/xflaim/src/scache.cpp @@ -200,7 +200,6 @@ Desc: Unlinks a cache block from the F_Database's new block list void F_CachedBlock::unlinkFromNewList( void) { flmAssert( m_pDatabase); - flmAssert( m_ui16Flags & CA_IN_NEW_LIST); flmAssert( m_pDatabase->m_uiNewCount);