56c571031f85ae1a97a9b97e541e7d58f36338e8
hiram
  Thu Nov 21 14:29:43 2013 -0800
remove redundant set of parens refs #12209
diff --git src/lib/common.c src/lib/common.c
index ed87f41..19efea8 100644
--- src/lib/common.c
+++ src/lib/common.c
@@ -1967,31 +1967,31 @@
 boolean quoting = FALSE;
 for (;;)
     {
     if (outArray != NULL && recordCount >= outSize)
         break;
 
     /* Skip initial separators. */
     while (isspace(*in)) ++in;
     if (*in == 0)
         break;
 
     /* Store start of word and look for end of word. */
     if (outArray != NULL)
         {
         outArray[recordCount] = in;
-        if ((*in == '"'))
+        if (*in == '"')
             quoteBegins = (in+1);
         else
             quoteBegins = NULL;
         }
     recordCount += 1;
     quoting = FALSE;
     for (;;)
         {
         if ((c = *in) == 0)
             break;
         if (quoting)
             {
             if (c == '"')
                 {
                 quoting = FALSE;