appease sun

This commit is contained in:
rsc 2005-03-15 16:11:47 +00:00
parent b3e7c02689
commit 1f8a80722f
4 changed files with 8 additions and 11 deletions

View file

@ -192,12 +192,9 @@ convwrite(Conv *c, void *data, int count)
{
Rpc *r;
for(;;){
r = convgetrpc(c, RpcRead);
if(r == nil)
return -1;
break;
}
r = convgetrpc(c, RpcRead);
if(r == nil)
return -1;
rpcrespondn(c, "ok", data, count);
return 0;
}