From: Oliver Schmidt Date: Thu, 2 May 2013 12:09:38 +0000 (+0300) Subject: Removed unused variable. X-Git-Tag: V2.14~36 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=8f7da7885a8034d19d6660a6b74d5d9fadbd2f1f;p=cc65 Removed unused variable. --- diff --git a/src/ld65/main.c b/src/ld65/main.c index c52cc2dbc..675970523 100644 --- a/src/ld65/main.c +++ b/src/ld65/main.c @@ -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++); }