2001-01-08 14:35 UTC-0800 Ron Pinkas <ron@profit-master.com>

* harbour/source/vm/estack.c
     * Corrected typo _HB_ITEM => HB_ITEM in type casting.
This commit is contained in:
Ron Pinkas
2001-01-08 22:27:54 +00:00
parent b7abfe9244
commit 4a38c6c28a
2 changed files with 9 additions and 5 deletions

View File

@@ -1,12 +1,16 @@
2001-01-08 14:35 UTC-0800 Ron Pinkas <ron@profit-master.com>
* harbour/source/vm/estack.c
* Corrected typo _HB_ITEM => HB_ITEM in type casting.
2001-01-08 22:18 GMT+0100 JFL (mafact) <jfl@mafact.com>
* harbour/makefile.vc
Added estack.obj
* harbour/source/compiler/harbour.l
Added Type Casting needed by VC++
Added Type Casting needed by VC++
* harbour/source/vm/estack.c
Added Type Casting needed by VC++
Added Type Casting needed by VC++
* harbour/source/vm/hvm.c
Added Type Casting needed by VC++
Added Type Casting needed by VC++
* harbour/source/vm/classes.c
Temporary released the HIDDEN Check on scooping

View File

@@ -104,7 +104,7 @@ void hb_stackPush( void )
hb_stack.pBase = hb_stack.pItems + BaseIndex;
hb_stack.wItems += STACK_EXPANDHB_ITEMS;
for( i=CurrIndex; i < hb_stack.wItems; ++i )
hb_stack.pItems[ i ] = (_HB_ITEM *) hb_xgrab( sizeof( HB_ITEM ) );
hb_stack.pItems[ i ] = (HB_ITEM *) hb_xgrab( sizeof( HB_ITEM ) );
/* hb_stackDispLocal(); */
}
@@ -125,7 +125,7 @@ void hb_stackInit( void )
hb_stack.wItems = STACK_INITHB_ITEMS;
for( i=0; i < hb_stack.wItems; ++i )
hb_stack.pItems[ i ] = (_HB_ITEM *) hb_xgrab( sizeof( HB_ITEM ) );
hb_stack.pItems[ i ] = (HB_ITEM *) hb_xgrab( sizeof( HB_ITEM ) );
}
void hb_stackRemove( LONG lUntilPos )