summaryrefslogtreecommitdiff
path: root/parser.c
diff options
context:
space:
mode:
authorMichael J. Chudobiak <mjc@avtechpulse.com>2012-08-16 11:33:44 -0400
committerMichael J. Chudobiak <mjc@avtechpulse.com>2012-08-16 11:33:44 -0400
commitd7ab57c08b3fed543492cd258c36996d3c5d59b3 (patch)
treea6ac7fe44d92e7dc619c91702d3cdd8a4444ea03 /parser.c
parent53b0084de1e0b3cdb94fd345a03911f80ebcb784 (diff)
remove unused variables
Diffstat (limited to 'parser.c')
-rw-r--r--parser.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/parser.c b/parser.c
index e5466c1..528a052 100644
--- a/parser.c
+++ b/parser.c
@@ -924,7 +924,6 @@ static int Go_int_eprom_48(gchar** response, int channel, char *loc_string,char
{
/* diag:eprom:int - 48 */
int eprom_loc;
- int i;
short the_number;
eprom_loc = atoi(loc_string);
@@ -957,7 +956,6 @@ static int Go_Float_eprom51(gchar** response, int channel, char *loc_string,char
{
/* diag:eprom:float - 51 */
int eprom_loc;
- int i;
float the_number;
eprom_loc = atoi(loc_string);
@@ -992,7 +990,6 @@ static int Go_char_eprom_70(gchar** response, int channel, char *loc_string,char
{
/* diag:eprom:char - 70 */
int eprom_loc;
- int i;
char the_number;
eprom_loc = atoi(loc_string);
@@ -1024,12 +1021,6 @@ static int Go_char_eprom_70(gchar** response, int channel, char *loc_string,char
static int Go_eprom_siz_86(gchar** response, int channel, int command_type)
{
- char x_char;
- short x_short;
- int x_int;
- float x_float;
- double x_double;
-
switch (command_type) {
case query_simple:
return query_int (response, sizeof(globals.Flash));