diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 291d709002..ede8d33583 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,7 @@ +19990605-00:00 CET Eddie Runia + * tests/working/runner.c + PITEM -> PHB_ITEM + 19990604-17:35 EDT David G. Holm * include/hbsetup.h - Added USE_GTAPI, which defaults to NOT being defined diff --git a/harbour/tests/working/runner.c b/harbour/tests/working/runner.c index 69d155409a..ac0928eea8 100644 --- a/harbour/tests/working/runner.c +++ b/harbour/tests/working/runner.c @@ -53,7 +53,7 @@ HARBOUR HB_RUN(); void HRB_FileClose( _FILE * ); void HRB_FileRead ( char *, int, int, _FILE * ); _FILE *HRB_FileOpen ( char * ); -void Push( PITEM ); +void Push( PHB_ITEM ); void PushNil( void ); void PushSymbol( PSYMBOL ); BYTE ReadByte( _FILE * ); @@ -305,7 +305,7 @@ long ReadLong( FILE *file ) if( cLong[3] ) /* Convert to long if ok */ { - PITEM pError = _errNew(); + PHB_ITEM pError = _errNew(); _errPutDescription(pError, "Error reading .HRB file"); _errLaunch(pError); _errRelease(pError); @@ -325,7 +325,7 @@ static void HRB_FileRead( char *cBuffer, int iSize, int iCount, FILE *fStream ) { if( iCount != (int) fread( cBuffer, iSize, iCount, fStream ) ) { /* Read error */ - PITEM pError = _errNew(); + PHB_ITEM pError = _errNew(); _errPutDescription(pError, "Error reading .HRB file"); _errLaunch(pError); _errRelease(pError);