From a87638642c99d88a3543e0cd5864c9e54133fbee Mon Sep 17 00:00:00 2001 From: wkj Date: Fri, 9 Jul 2004 01:54:06 +0000 Subject: Compare function pointers against 0 rather than nil. --- src/cmd/plumb/fsys.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/cmd/plumb') 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) -- cgit v1.2.3