aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2005-03-18 19:34:00 +0000
committerrsc <devnull@localhost>2005-03-18 19:34:00 +0000
commit8c0613150ef8372743ee86f6a552e374c103f704 (patch)
tree6e0f5327a2ed0e4156efc54ba70c570ebc5dab95 /src
parent5544aaf99bc30369997764624b38be4be0d4b138 (diff)
downloadplan9port-8c0613150ef8372743ee86f6a552e374c103f704.tar.gz
plan9port-8c0613150ef8372743ee86f6a552e374c103f704.tar.bz2
plan9port-8c0613150ef8372743ee86f6a552e374c103f704.zip
use nil instead of 0
Diffstat (limited to 'src')
-rw-r--r--src/cmd/acme/fsys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/acme/fsys.c b/src/cmd/acme/fsys.c
index 1a63a11d..8e482f6c 100644
--- 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){