From 63676f97e293b106be5f6fb535f6abcabaa8d0ea Mon Sep 17 00:00:00 2001
From: Oliver Schmidt
Date: Thu, 2 May 2013 14:42:33 +0300
Subject: [PATCH] Removed unused variable.
---
src/ca65/main.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/src/ca65/main.c b/src/ca65/main.c
index 57d0bb2c6..f05cd3415 100644
--- a/src/ca65/main.c
+++ b/src/ca65/main.c
@@ -1,4 +1,3 @@
-
/* */
/* main.c */
/* */
@@ -314,7 +313,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;
@@ -326,7 +324,6 @@ static void DefineSymbol (const char* Def)
P = Def;
/* Copy the symbol, checking the rest */
- I = 0;
while (IsIdChar (*P)) {
SB_AppendChar (&SymName, *P++);
}
--
2.39.5