]> git.sur5r.net Git - cc65/blobdiff - src/ld65/main.c
Removed unused variable.
[cc65] / src / ld65 / main.c
index c52cc2dbc05105bea8570bc7239e6c04d9c4afce..6759705233234a81ecfffefd2fd4e8892767e875 100644 (file)
@@ -237,7 +237,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;
 
@@ -249,7 +248,6 @@ static void DefineSymbol (const char* Def)
     P = Def;
 
     /* Copy the symbol, checking the remainder */
-    I = 0;
     while (IsAlNum (*P) || *P == '_') {
         SB_AppendChar (&SymName, *P++);
     }