tsign fix - plan9port - [fork] Plan 9 from user space
 (HTM) git clone git://src.adamsgaard.dk/plan9port
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit fc1d5d8c32f9c963b1d0de40f95d633f9d106e48
 (DIR) parent cd1d0ab0b5ed07c03b066731328e9519cba5914c
 (HTM) Author: rsc <devnull@localhost>
       Date:   Tue, 17 Jan 2006 01:33:12 +0000
       
       sign fix
       
       Diffstat:
         M include/fcall.h                     |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/include/fcall.h b/include/fcall.h
       t@@ -50,7 +50,7 @@ struct        Fcall
        #define        GBIT8(p)        ((p)[0])
        #define        GBIT16(p)        ((p)[0]|((p)[1]<<8))
        #define        GBIT32(p)        ((p)[0]|((p)[1]<<8)|((p)[2]<<16)|((p)[3]<<24))
       -#define        GBIT64(p)        ((vlong)((p)[0]|((p)[1]<<8)|((p)[2]<<16)|((p)[3]<<24)) |\
       +#define        GBIT64(p)        ((u32int)((p)[0]|((p)[1]<<8)|((p)[2]<<16)|((p)[3]<<24)) |\
                                        ((vlong)((p)[4]|((p)[5]<<8)|((p)[6]<<16)|((p)[7]<<24)) << 32))
        
        #define        PBIT8(p,v)        (p)[0]=(v)