URI:
       tuse nil instead of 0 - plan9port - [fork] Plan 9 from user space
  HTML git clone git://src.adamsgaard.dk/plan9port
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 8c0613150ef8372743ee86f6a552e374c103f704
   DIR parent 5544aaf99bc30369997764624b38be4be0d4b138
  HTML Author: rsc <devnull@localhost>
       Date:   Fri, 18 Mar 2005 19:34:00 +0000
       
       use nil instead of 0
       
       Diffstat:
         M src/cmd/acme/fsys.c                 |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/src/cmd/acme/fsys.c b/src/cmd/acme/fsys.c
       t@@ -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){