Commit 565cd287069f30154d5325640b5eb2e12fbfd2f2

henry 2003-04-05T00:40:47

Fixed formatting

diff --git a/include/FTList.h b/include/FTList.h
index f942d57..ea0117d 100644
--- a/include/FTList.h
+++ b/include/FTList.h
@@ -33,7 +33,7 @@ class FTGL_EXPORT FTList
         {
             Node* next;
             
-            for (Node *walk = head;walk;walk = next)
+            for( Node *walk = head; walk; walk = next)
             {
                 next = walk->next;
                 delete walk;
@@ -60,7 +60,10 @@ class FTGL_EXPORT FTList
                 head->next = node;
             }
 
-            if (tail) tail->next = node;
+            if( tail)
+            {
+                tail->next = node;
+            }
             tail = node;
             ++listSize;
         }