Removed unused variable.

This commit is contained in:
Oliver Schmidt
2013-05-02 14:42:33 +03:00
parent d74ba4bd63
commit 63676f97e2

View File

@@ -1,4 +1,3 @@
/* */ /* */
/* main.c */ /* main.c */
/* */ /* */
@@ -314,7 +313,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;
@@ -326,7 +324,6 @@ static void DefineSymbol (const char* Def)
P = Def; P = Def;
/* Copy the symbol, checking the rest */ /* Copy the symbol, checking the rest */
I = 0;
while (IsIdChar (*P)) { while (IsIdChar (*P)) {
SB_AppendChar (&SymName, *P++); SB_AppendChar (&SymName, *P++);
} }