c7aa34eea78f9393765102784521d4f560c11ff6
tdreszer
  Mon Apr 18 14:27:19 2011 -0700
Insignificant edit
diff --git src/lib/ra.c src/lib/ra.c
index 11fbd39..aa5e8c5 100644
--- src/lib/ra.c
+++ src/lib/ra.c
@@ -58,33 +58,31 @@
 int lineLen,rawLen;
 while (lineFileNextFull(lf, &line, &lineLen, &raw, &rawLen)) // Joins continuation lines
     {
     char *clippedText = skipLeadingSpaces(line);
     if (*clippedText == 0)
         {
         if (dyRecord)
             lineFileReuse(lf);   // Just so don't loose leading space in dy.
         return FALSE;
         }
 
     // Append whatever line was read from file.
     if (dyRecord)
        {
         if (raw != NULL)
-            {
             dyStringAppendN(dyRecord, raw, rawLen);
-            }
        else
             dyStringAppendN(dyRecord, line, lineLen);
        dyStringAppendC(dyRecord,'\n');
        }
 
     // Skip comments
     if (*clippedText == '#')
        {
        if (startsWith("#EOF", clippedText))
            return FALSE;
        else
            continue;
        }
     *retTag = nextWord(&line);
     *retVal = trimSpaces(line);