]> git.sur5r.net Git - cc65/commitdiff
Removed an unused assignment
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 4 Jan 2004 21:35:38 +0000 (21:35 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 4 Jan 2004 21:35:38 +0000 (21:35 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@2872 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ca65/condasm.c
src/ca65/expr.c

index 5b2bf8ef09e42dbd728547977d640aa44e0c5292..b092b79720fdfbb604aa648fb361bfc42cfdd4b9 100644 (file)
@@ -122,7 +122,7 @@ static IfDesc* GetCurrentIf (void)
 static void FreeIf (void)
 /* Free all .IF descriptors until we reach one with the NeedTerm bit set */
 {
-    int Done = 0;
+    int Done;
     do {
                IfDesc* D = GetCurrentIf();
                if (D == 0) {
index 1935c4f71ca690a70780c3741ccade4e052372e4..75e1aee264144452ab58883dd6ae946e51e4e59c 100644 (file)
@@ -420,7 +420,7 @@ static ExprNode* DoMatch (enum TC EqualityLevel)
     int Result;
     TokNode* Root = 0;
     TokNode* Last = 0;
-    TokNode* Node = 0;
+    TokNode* Node;
 
     /* A list of tokens follows. Read this list and remember it building a
      * single linked list of tokens including attributes. The list is
@@ -766,7 +766,7 @@ static ExprNode* Factor (void)
 {
     ExprNode* L;
     ExprNode* N;
-    long      Val;                
+    long      Val;
 
     switch (Tok) {