s variable was assigned values twice successively

This commit is contained in:
dwarning 2018-10-25 10:55:35 +02:00 committed by Holger Vogt
parent 360efabf36
commit 93f35afe69
1 changed files with 1 additions and 2 deletions

View File

@ -1678,7 +1678,6 @@ recifeval(struct card *pdeck)
char *t;
char *s = t = pdeck->line;
/* get parameter to .if */
s = nexttok(s);
elsefound = 0;
elseiffound = 0;
iffound = 1;
@ -2093,11 +2092,11 @@ eval_agauss(struct card *deck, char *fcn)
{
struct card *card;
double x, y, z, val;
int skip_control = 0;
card = deck;
for (; card; card = card->nextcard) {
int skip_control = 0;
char *ap, *curr_line = card->line;
/* exclude any command inside .control ... .endc */