mirror of
https://github.com/cc65/cc65.git
synced 2025-02-10 09:31:08 +00:00
Removed unused variable.
This commit is contained in:
parent
81f461a15c
commit
8f7da7885a
@ -237,7 +237,6 @@ static void DefineSymbol (const char* Def)
|
|||||||
/* Define a symbol from the command line */
|
/* Define a symbol from the command line */
|
||||||
{
|
{
|
||||||
const char* P;
|
const char* P;
|
||||||
unsigned I;
|
|
||||||
long Val;
|
long Val;
|
||||||
StrBuf SymName = AUTO_STRBUF_INITIALIZER;
|
StrBuf SymName = AUTO_STRBUF_INITIALIZER;
|
||||||
|
|
||||||
@ -249,7 +248,6 @@ static void DefineSymbol (const char* Def)
|
|||||||
P = Def;
|
P = Def;
|
||||||
|
|
||||||
/* Copy the symbol, checking the remainder */
|
/* Copy the symbol, checking the remainder */
|
||||||
I = 0;
|
|
||||||
while (IsAlNum (*P) || *P == '_') {
|
while (IsAlNum (*P) || *P == '_') {
|
||||||
SB_AppendChar (&SymName, *P++);
|
SB_AppendChar (&SymName, *P++);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user