From: Yang Tse Date: Sat, 21 May 2011 12:39:42 +0000 (+0200) Subject: compiler warning: fix X-Git-Tag: curl-7_21_7~97 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8b849265d811bb9ce3e93e1d28daf36e7d6e5bfb;p=curl compiler warning: fix Fix compiler warning: enumerated type mixed with another type --- diff --git a/tests/unit/unit1303.c b/tests/unit/unit1303.c index f94daf7a6..2e4f23096 100644 --- a/tests/unit/unit1303.c +++ b/tests/unit/unit1303.c @@ -63,7 +63,7 @@ struct timetest { int now_us; int timeout_ms; int connecttimeout_ms; - int connecting; + bool connecting; long result; const char *comment; };