ChangeLogTag:Fri Aug 06 20:04:05 1999 Gonzalo A. Diethelm <Gonzalo.Diethelm@jda.cl>

This commit is contained in:
Gonzalo A. Diethelm
1999-08-07 00:14:01 +00:00
parent 9dba9f7469
commit ffef650772
4 changed files with 13 additions and 4 deletions

View File

@@ -1,3 +1,12 @@
Fri Aug 06 20:04:05 1999 Gonzalo A. Diethelm <Gonzalo.Diethelm@jda.cl>
* 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

View File

@@ -71,4 +71,4 @@ endif
# Generic rule to clean up.
clean::
-$(RM) *.bak *.obj core *~ *.o
-$(RM) *.bak *.obj core *.core *~ *.o

View File

@@ -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 );
}
}

View File

@@ -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;