Fix warnings in clang
This commit is contained in:
parent
4ebce359ea
commit
ceceab8d8b
21 changed files with 49 additions and 52 deletions
|
|
@ -116,7 +116,7 @@ int setconj(TypeGram hinsi, JREC* jrec, CREC* crec) {
|
|||
int count = 0;
|
||||
u_char* cnj;
|
||||
|
||||
if(cnj = Conjadr(hinsi)) {
|
||||
if((cnj = Conjadr(hinsi))) {
|
||||
saml = ofslen = 0;
|
||||
|
||||
yptr = cnvstart + jrec->jlen;
|
||||
|
|
@ -139,7 +139,7 @@ int setconj(TypeGram hinsi, JREC* jrec, CREC* crec) {
|
|||
|
||||
if(isdpnd(*(yptr + saml))) continue;
|
||||
|
||||
if(right = cnvrow(jrec, (TypeCnct)CnjRight(cnj))) {
|
||||
if((right = cnvrow(jrec, (TypeCnct)CnjRight(cnj)))) {
|
||||
crec->len = (u_char)(ofslen + saml);
|
||||
crec->right = right;
|
||||
count++;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue