summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael R Sweet <michaelrsweet@gmail.com>2016-03-24 18:53:53 -0400
committerMichael R Sweet <michaelrsweet@gmail.com>2016-03-24 18:53:53 -0400
commit21f92a3cfdb6ec072ac4e8b724bf923922bf3f97 (patch)
treed663630db3a232fb33c27afdccd42bae1e4003c0 /test
parent508de6790c28558456f54f780ea2b6b46afed9dd (diff)
Silence compiler warning.
Diffstat (limited to 'test')
-rw-r--r--test/ipptool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ipptool.c b/test/ipptool.c
index bf4af105e..6d46da162 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);