aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/plumb
diff options
context:
space:
mode:
authorwkj <devnull@localhost>2004-07-09 01:54:06 +0000
committerwkj <devnull@localhost>2004-07-09 01:54:06 +0000
commita87638642c99d88a3543e0cd5864c9e54133fbee (patch)
treeccacfd6c58da316c208f1f014be0a15a28cad4b8 /src/cmd/plumb
parenteac9e0183f550f950bfcf5cdad959976cbe041ba (diff)
downloadplan9port-a87638642c99d88a3543e0cd5864c9e54133fbee.tar.gz
plan9port-a87638642c99d88a3543e0cd5864c9e54133fbee.tar.bz2
plan9port-a87638642c99d88a3543e0cd5864c9e54133fbee.zip
Compare function pointers against 0 rather than nil.
Diffstat (limited to 'src/cmd/plumb')
-rw-r--r--src/cmd/plumb/fsys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/plumb/fsys.c b/src/cmd/plumb/fsys.c
index 0f5bcc89..0ffd5053 100644
--- a/src/cmd/plumb/fsys.c
+++ b/src/cmd/plumb/fsys.c
@@ -233,7 +233,7 @@ fsysproc(void *v)
error("convert error in convM2S");
if(debug)
fprint(2, "<= %F\n", t);
- if(fcall[t->type] == nil)
+ if(fcall[t->type] == 0)
fsysrespond(t, buf, Ebadfcall);
else{
if(t->type==Tversion || t->type==Tauth)