1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

Removed unused variable.

This commit is contained in:
Oliver Schmidt 2013-05-02 15:09:38 +03:00
parent 81f461a15c
commit 8f7da7885a

View 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++);
}