diff --git a/harbour/ChangeLog b/harbour/ChangeLog index ff298c628f..2204eaaf03 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,10 @@ 2002-12-01 13:30 UTC+0100 Foo Bar */ +2007-04-17 04:12 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/source/rtl/itemseri.c + * cleaned OW warnings + 2007-04-17 04:10 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbapi.h * harbour/source/vm/dynsym.c diff --git a/harbour/source/rtl/itemseri.c b/harbour/source/rtl/itemseri.c index bb08a0445c..e773feb44e 100644 --- a/harbour/source/rtl/itemseri.c +++ b/harbour/source/rtl/itemseri.c @@ -219,7 +219,6 @@ static void hb_itemSerialOffsetSet( PHB_CYCLIC_REF pRef, PHB_ITEM pItem, if( pRef->ulOffset == ulOffset ) { pRef->value = ( void * ) pItem; - return; break; } pRef = pRef->pNext; @@ -234,7 +233,6 @@ static void hb_itemSerialOffsetGet( PHB_CYCLIC_REF pRef, PHB_ITEM pItem, if( pRef->ulOffset == ulOffset ) { hb_itemCopy( pItem, ( PHB_ITEM ) pRef->value ); - return; break; } pRef = pRef->pNext;