From e652dc40be3f8ac7fff85425809d027584e9e24e Mon Sep 17 00:00:00 2001 From: rlar Date: Sat, 18 Jan 2014 13:37:44 +0100 Subject: [PATCH] inpcom.c, drop unused artifacts --- src/frontend/inpcom.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/frontend/inpcom.c b/src/frontend/inpcom.c index f394019b4..4abb78c9e 100644 --- a/src/frontend/inpcom.c +++ b/src/frontend/inpcom.c @@ -47,7 +47,6 @@ Author: 1985 Wayne A. Christopher /* globals -- wanted to avoid complicating inp_readall interface */ #define N_LIBRARIES 1000 -#define N_SECTIONS 1000 #define N_PARAMS 1000 #define N_SUBCKT_W_PARAMS 4000 @@ -2492,7 +2491,7 @@ inp_get_subckt_name(char *s) static int inp_get_params(char *line, char *param_names[], char *param_values[]) { - char *equal_ptr = strchr(line, '='); + char *equal_ptr; char *end, *name, *value; int num_params = 0; char keep;