fix clang warnings reported by Tuncer Ayaz
R=rsc http://codereview.appspot.com/6744054
This commit is contained in:
parent
34d629c857
commit
0cfb376070
24 changed files with 586 additions and 588 deletions
|
|
@ -471,7 +471,7 @@ sread(Srv *srv, Req *r)
|
|||
respond(r, Eunknownfid);
|
||||
return;
|
||||
}
|
||||
if(r->ifcall.count < 0){
|
||||
if((int32)r->ifcall.count < 0){
|
||||
respond(r, Ebotch);
|
||||
return;
|
||||
}
|
||||
|
|
@ -518,7 +518,7 @@ swrite(Srv *srv, Req *r)
|
|||
respond(r, Eunknownfid);
|
||||
return;
|
||||
}
|
||||
if(r->ifcall.count < 0){
|
||||
if((int32)r->ifcall.count < 0){
|
||||
respond(r, Ebotch);
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue