silence various warnings
This commit is contained in:
parent
b3efcdbf59
commit
73bfbacb24
4 changed files with 7 additions and 3 deletions
|
|
@ -21,7 +21,7 @@ void paren(int leftc, int p1, int rightc)
|
|||
n = 1;
|
||||
m = n - 2;
|
||||
if (leftc == '{' || rightc == '}') {
|
||||
n = n%2 ? n : ++n;
|
||||
n = n%2 ? n : n+1;
|
||||
if (n < 3)
|
||||
n = 3;
|
||||
m = n-3;
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ int yylook(void);
|
|||
int yywrap(void);
|
||||
|
||||
#define CADD cbuf[clen++]=yytext[0]; \
|
||||
if (clen>=CBUFLEN-1) { ERROR "string too long", cbuf WARNING; BEGIN A; }
|
||||
if (clen>=CBUFLEN-1) { ERROR "string too long" WARNING; BEGIN A; }
|
||||
#define CBUFLEN 500
|
||||
char cbuf[CBUFLEN];
|
||||
int c, clen, cflag, delim;
|
||||
|
|
|
|||
|
|
@ -978,7 +978,7 @@ trypref(char* ep, char* a, int lev, int flag)
|
|||
deriv[lev+1].mesg = pp;
|
||||
deriv[lev+1].type = 0;
|
||||
}
|
||||
while(tp=lookuppref((uchar**)&bp,ep)) {
|
||||
while(tp=lookuppref((uchar**)(void*)&bp,ep)) {
|
||||
*pp++ = '+';
|
||||
cp = tp->s;
|
||||
while(pp<space+sizeof(space) && (*pp = *cp++))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue