From 16651c61db9923d015e1b627e2394ebf18a1b592 Mon Sep 17 00:00:00 2001 From: Tollef Fog Heen Date: Sun, 28 Aug 2011 20:54:43 +0200 Subject: [PATCH] Drop pointless if --- antlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.5