plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit 13096891711f32d8a7dca3e1ba9cced908752c14
parent 5f1eaee2ab6c8d1b67ec6b1812c38e6e487569e4
Author: Russ Cox <rsc@swtch.com>
Date:   Sat, 14 Jun 2008 23:04:44 -0400

libventi: return value nits

Diffstat:
Msrc/libventi/packet.c | 2+-
Msrc/libventi/send.c | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/libventi/packet.c b/src/libventi/packet.c @@ -888,7 +888,7 @@ memalloc(int n, int pos) if(n < 0 || n > MaxFragSize) { werrstr(EPacketSize); - return 0; + return nil; } if(n <= SmallMemSize) { lock(&freelist.lk); diff --git a/src/libventi/send.c b/src/libventi/send.c @@ -39,7 +39,7 @@ _vtsend(VtConn *z, Packet *p) if(write(z->outfd, ioc.addr, ioc.len) < ioc.len){ vtlog(VtServerLog, "<font size=-1>%T %s:</font> sending packet %p: %r<br>\n", z->addr, p); packetfree(p); - return 0; + return -1; } packetconsume(p, nil, ioc.len); tot += ioc.len;