diff options
author | Russ Cox <rsc@swtch.com> | 2012-10-21 12:04:56 -0400 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2012-10-21 12:04:56 -0400 |
commit | c5bfba483f4002c539cbeb4087827524dba8d0f8 (patch) | |
tree | a054fb1030f97f36308240d974057449acebcac3 /src/libsunrpc | |
parent | b0ae8a46a0e40773d306906dd0fd9b33832e7086 (diff) | |
download | plan9port-c5bfba483f4002c539cbeb4087827524dba8d0f8.tar.gz plan9port-c5bfba483f4002c539cbeb4087827524dba8d0f8.tar.bz2 plan9port-c5bfba483f4002c539cbeb4087827524dba8d0f8.zip |
silence more warnings
R=rsc
http://codereview.appspot.com/6744056
Diffstat (limited to 'src/libsunrpc')
-rw-r--r-- | src/libsunrpc/nfs3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsunrpc/nfs3.c b/src/libsunrpc/nfs3.c index 7a65b3a8..706d9c4f 100644 --- a/src/libsunrpc/nfs3.c +++ b/src/libsunrpc/nfs3.c @@ -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; } |