]> err.no Git - gant/commitdiff
Compilation fixes
authorTollef Fog Heen <tfheen@err.no>
Thu, 28 Jul 2011 15:08:43 +0000 (17:08 +0200)
committerTollef Fog Heen <tfheen@err.no>
Thu, 28 Jul 2011 15:08:43 +0000 (17:08 +0200)
antlib.c

index 98912326fb76062f1ab97256935588bc95bf43d4..3793bff75a5ffdab1580fb80739ab8184c5033ea 100644 (file)
--- a/antlib.c
+++ b/antlib.c
@@ -45,6 +45,8 @@ struct msg_queue {
        uchar len;
 };
 
+void get_data(int fd);
+
 // send message over serial port
 uchar
 msg_send(uchar mesg, uchar *inbuf, uchar len)
@@ -138,6 +140,7 @@ void *commfn(void* arg)
        int ready;
        struct timeval to;
 
+       (void)arg;
        for(;;) {
                FD_ZERO(&readfds);
                FD_ZERO(&writefds);
@@ -152,7 +155,7 @@ void *commfn(void* arg)
        }
 }
 
-get_data(int fd)
+void get_data(int fd)
 {
        static uchar buf[500];
        static int bufc = 0;