From: Michael R Sweet Date: Thu, 24 Mar 2016 22:53:53 +0000 (-0400) Subject: Silence compiler warning. X-Git-Tag: v2.2b1~77 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=21f92a3cfdb6ec072ac4e8b724bf923922bf3f97;p=thirdparty%2Fcups.git Silence compiler warning. --- diff --git a/test/ipptool.c b/test/ipptool.c index bf4af105e1..6d46da162e 100644 --- a/test/ipptool.c +++ b/test/ipptool.c @@ -5802,7 +5802,7 @@ with_value(FILE *outfile, /* I - Output file */ case IPP_TAG_BOOLEAN : for (i = 0; i < attr->num_values; i ++) { - if (!strcmp(value, "true") == attr->values[i].boolean) + if ((!strcmp(value, "true")) == attr->values[i].boolean) { if (!matchbuf[0]) strlcpy(matchbuf, value, matchlen);