]> Zhao Yanbai Git Server - minix.git/commitdiff
Fix compiler warnings.
authorBen Gras <ben@minix3.org>
Fri, 24 Mar 2006 13:53:09 +0000 (13:53 +0000)
committerBen Gras <ben@minix3.org>
Fri, 24 Mar 2006 13:53:09 +0000 (13:53 +0000)
drivers/log/diag.c
include/minix/syslib.h

index 4958d3e9585a0a32028238cd1047306db17da4a2..b829d10e51c509cda469df059b2d798cd9498856 100644 (file)
@@ -33,7 +33,7 @@ message *m;                                   /* notification message */
        message mess;
 
        /* Ask TTY driver for log output */
-       mess.GETKM_PTR= &kmess;
+       mess.GETKM_PTR= (char *) &kmess;
        mess.m_type = GET_KMESS;
        r= sendrec(TTY_PROC_NR, &mess);
        if (r == OK) r= mess.m_type;
index 584913759607fd5ff4849393e9936ad13369e352..583de81e47c8a0e79591addf1e942c073eb44453 100755 (executable)
@@ -148,9 +148,9 @@ _PROTOTYPE(int sys_vinl, (pvl_pair_t *pvl_pairs, int nr_ports)              );
 _PROTOTYPE(int sys_out, (int port, unsigned long value, int type)      ); 
 
 /* Shorthands for sys_in() system call. */
-#define sys_inb(p,v)   sys_in((p), (v), DIO_BYTE)
-#define sys_inw(p,v)   sys_in((p), (v), DIO_WORD)
-#define sys_inl(p,v)   sys_in((p), (v), DIO_LONG)
+#define sys_inb(p,v)   sys_in((p), (unsigned long *) (v), DIO_BYTE)
+#define sys_inw(p,v)   sys_in((p), (unsigned long *) (v), DIO_WORD)
+#define sys_inl(p,v)   sys_in((p), (unsigned long *) (v), DIO_LONG)
 _PROTOTYPE(int sys_in, (int port, unsigned long *value, int type)      );
 
 /* pci.c */