From: Tollef Fog Heen Date: Sun, 28 Aug 2011 18:54:43 +0000 (+0200) Subject: Drop pointless if X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=16651c61db9923d015e1b627e2394ebf18a1b592;p=gant Drop pointless if --- diff --git a/antlib.c b/antlib.c index 564f5f9..dafa1ac 100644 --- a/antlib.c +++ b/antlib.c @@ -463,7 +463,7 @@ ANT_Initf(char *devname) tp.c_cc[VTIME] = 0; S(tcsetattr(fd, TCSANOW, &tp)); - if (pthread_create(&commthread, 0, commfn, 0)); + pthread_create(&commthread, 0, commfn, 0); return 1; }