Extra parantheses to make GCC happy
authorAdam Dickmeiss <adam@indexdata.dk>
Wed, 7 Oct 2009 08:49:14 +0000 (10:49 +0200)
committerAdam Dickmeiss <adam@indexdata.dk>
Wed, 7 Oct 2009 08:49:14 +0000 (10:49 +0200)
src/logic.c

index 697da4d..3a442e1 100644 (file)
@@ -506,9 +506,9 @@ static struct database_criterion *parse_filter(NMEM m, const char *buf)
         int subi;
         struct database_criterion *new = nmem_malloc(m, sizeof(*new));
         char *eq;
-        if (eq = strchr(values[i], '='))
+        if ((eq = strchr(values[i], '=')))
             new->type = PAZPAR2_STRING_MATCH;
-        if (eq = strchr(values[i], '~'))
+        if ((eq = strchr(values[i], '~')))
             new->type = PAZPAR2_SUBSTRING_MATCH;
         if (!eq)
         {