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

index 66e4bd842b9b8aa0a6854eea26a39c34d9cc4869..98912326fb76062f1ab97256935588bc95bf43d4 100644 (file)
--- a/antlib.c
+++ b/antlib.c
@@ -18,7 +18,7 @@
 //#include "antmessage.h"
 //#include "anttypes.h"
 
-#define S(e) if (-1 == (e)) {perror(#e);exit(1);} else
+#define S(e) do {if (-1 == (e)) { perror(#e);exit(1);} } while (0)
 
 #define MAXMSG 30 // SYNC,LEN,MSG,data[9+],CHKSUM
 #define MAXCHAN 32
@@ -29,9 +29,8 @@
 #define hexval(c) ((c >= '0' && c <= '9') ? (c-'0') : ((c&0xdf)-'A'+10))
 
 static int fd = -1;
-static int dbg = 0;
-static pthread_t commthread;;
-static int commenabled = 1;
+static int dbg = 1;
+static pthread_t commthread;
 
 static RESPONSE_FUNC rfn = 0;
 static uchar *rbufp;