silence more warnings

R=rsc
http://codereview.appspot.com/6744056
This commit is contained in:
Russ Cox 2012-10-21 12:04:56 -04:00
parent b0ae8a46a0
commit c5bfba483f
15 changed files with 279 additions and 271 deletions

View file

@ -120,7 +120,7 @@ nfs3errstr(Nfs3Status status)
int i;
for(i=0; i<nelem(etab); i++){
if(etab[i].status == status){
if((int)etab[i].status == (int)status){
werrstr(etab[i].msg);
return;
}