From ffef650772d8355d30f9cca92376b3e75917525b Mon Sep 17 00:00:00 2001 From: "Gonzalo A. Diethelm" Date: Sat, 7 Aug 1999 00:14:01 +0000 Subject: [PATCH] ChangeLogTag:Fri Aug 06 20:04:05 1999 Gonzalo A. Diethelm --- harbour/ChangeLog | 9 +++++++++ harbour/config/rules.cf | 2 +- harbour/source/hbpp/hbpp.c | 4 ++-- harbour/source/hbpp/stdalone/hbpp.c | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 8b1e801539..dee604215f 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,12 @@ +Fri Aug 06 20:04:05 1999 Gonzalo A. Diethelm + + * config/rules.cf: + Added the removal of *.core to the clean target. + + * source/hbpp/hbpp.c: + * source/hbpp/stdalone/hbpp.c: + Fixed two unused variable warnings. + 199908.06-22:12 GMT+3 Alexander Kresin * include/hbpp.h * source/hbpp/hbpp.c diff --git a/harbour/config/rules.cf b/harbour/config/rules.cf index bcdd9224f4..2205687b5d 100644 --- a/harbour/config/rules.cf +++ b/harbour/config/rules.cf @@ -71,4 +71,4 @@ endif # Generic rule to clean up. clean:: - -$(RM) *.bak *.obj core *~ *.o + -$(RM) *.bak *.obj core *.core *~ *.o diff --git a/harbour/source/hbpp/hbpp.c b/harbour/source/hbpp/hbpp.c index f732419813..40ef6a87a0 100644 --- a/harbour/source/hbpp/hbpp.c +++ b/harbour/source/hbpp/hbpp.c @@ -376,7 +376,7 @@ void ParseCommand( char* sLine, int com_or_xcom, int com_or_tra ) char cmdname[MAX_NAME]; COMMANDS *stcmd; int mlen,rlen; - int ipos, rez; + int ipos; NextWord( &sLine, cmdname, FALSE ); stroupper( cmdname ); @@ -1766,4 +1766,4 @@ BOOL OpenInclude( char * szFileName, PATHNAMES *pSearch, FILE** fptr, BOOL bStan } return ( *fptr ? TRUE : FALSE ); -} \ No newline at end of file +} diff --git a/harbour/source/hbpp/stdalone/hbpp.c b/harbour/source/hbpp/stdalone/hbpp.c index 7d5acf0465..a47108d3ca 100644 --- a/harbour/source/hbpp/stdalone/hbpp.c +++ b/harbour/source/hbpp/stdalone/hbpp.c @@ -221,7 +221,7 @@ int Hp_Parse( FILE* handl_i, FILE* handl_o ) void OutTable( DEFINES* endDefine, COMMANDS* endCommand ) { FILE *handl_o; - int i, ipos, len_mpatt, len_value; + int ipos, len_mpatt, len_value; int num; DEFINES *stdef1 = topDefine, *stdef2 = NULL, *stdef3; COMMANDS *stcmd1 = topCommand, *stcmd2 = NULL, *stcmd3;