From: Oliver Schmidt
Date: Thu, 2 May 2013 11:42:33 +0000 (+0300)
Subject: Removed unused variable.
X-Git-Tag: V2.14~40
X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=63676f97e293b106be5f6fb535f6abcabaa8d0ea;p=cc65
Removed unused variable.
---
diff --git a/src/ca65/main.c b/src/ca65/main.c
index 57d0bb2c6..f05cd3415 100644
--- a/src/ca65/main.c
+++ b/src/ca65/main.c
@@ -1,4 +1,3 @@
-
/* */
/* main.c */
/* */
@@ -314,7 +313,6 @@ static void DefineSymbol (const char* Def)
/* Define a symbol from the command line */
{
const char* P;
- unsigned I;
long Val;
StrBuf SymName = AUTO_STRBUF_INITIALIZER;
@@ -326,7 +324,6 @@ static void DefineSymbol (const char* Def)
P = Def;
/* Copy the symbol, checking the rest */
- I = 0;
while (IsIdChar (*P)) {
SB_AppendChar (&SymName, *P++);
}