plan9port

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

commit 8c0613150ef8372743ee86f6a552e374c103f704
parent 5544aaf99bc30369997764624b38be4be0d4b138
Author: rsc <devnull@localhost>
Date:   Fri, 18 Mar 2005 19:34:00 +0000

use nil instead of 0

Diffstat:
Msrc/cmd/acme/fsys.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cmd/acme/fsys.c b/src/cmd/acme/fsys.c @@ -158,7 +158,7 @@ fsysproc(void *v) error("convert error in convM2S"); if(DEBUG) fprint(2, "%F\n", &x->fcall); - if(fcall[x->fcall.type] == 0) + if(fcall[x->fcall.type] == nil) x = respond(x, &t, "bad fcall type"); else{ switch(x->fcall.type){