From 4a38c6c28adb3f5d43eff2608f5ac9176e8e712d Mon Sep 17 00:00:00 2001 From: Ron Pinkas Date: Mon, 8 Jan 2001 22:27:54 +0000 Subject: [PATCH] 2001-01-08 14:35 UTC-0800 Ron Pinkas * harbour/source/vm/estack.c * Corrected typo _HB_ITEM => HB_ITEM in type casting. --- harbour/ChangeLog | 10 +++++++--- harbour/source/vm/estack.c | 4 ++-- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 96f461d11b..4f1e532286 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,12 +1,16 @@ +2001-01-08 14:35 UTC-0800 Ron Pinkas + * harbour/source/vm/estack.c + * Corrected typo _HB_ITEM => HB_ITEM in type casting. + 2001-01-08 22:18 GMT+0100 JFL (mafact) * 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 diff --git a/harbour/source/vm/estack.c b/harbour/source/vm/estack.c index 954a00f5cf..1f3c46ebce 100644 --- a/harbour/source/vm/estack.c +++ b/harbour/source/vm/estack.c @@ -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 )