Browse Source

drop (INPtables*) casts

pre-master-46
rlar 16 years ago
parent
commit
91a9eb5a10
  1. 4
      ChangeLog
  2. 4
      src/frontend/spiceif.c

4
ChangeLog

@ -1,3 +1,7 @@
2010-08-10 Robert Larice
* src/frontend/spiceif.c' :
drop (INPtables*) casts, which are no longer necessary
2010-08-10 Robert Larice
* src/frontend/spiceif.c ,
* src/spicelib/analysis/cktmask.c ,

4
src/frontend/spiceif.c

@ -300,7 +300,7 @@ ci_specTask will point to it CDHW*/
/*CDHW ci_curTask and ci_specTask point to the interactive task AAA CDHW*/
INPpas2(ckt, (card *) &deck, (INPtables *)tab, ft_curckt->ci_specTask);
INPpas2(ckt, (card *) &deck, tab, ft_curckt->ci_specTask);
if (deck.li_error) {
fprintf(cp_err, "Warning: %s\n", deck.li_error);
@ -547,7 +547,7 @@ if_cktfree(CKTcircuit *ckt, INPtables *tab)
CKTcircuit *cc = /* fixme, drop that */ ckt;
(*(ft_sim->deleteCircuit))(cc);
INPtabEnd((INPtables *) tab);
INPtabEnd(tab);
return;
}

Loading…
Cancel
Save