harmonise `struct circ' variables, `ckt' --> `ci'

This commit is contained in:
rlar 2015-12-15 18:29:27 +01:00
parent f6716af635
commit 18426c755d
3 changed files with 6 additions and 6 deletions

View File

@ -22,8 +22,8 @@ struct circ *ft_circuits = NULL;
/* Add a circuit to the circuit list */
void
ft_newcirc(struct circ *ckt)
ft_newcirc(struct circ *ci)
{
ckt->ci_next = ft_circuits;
ft_circuits = ckt;
ci->ci_next = ft_circuits;
ft_circuits = ci;
}

View File

@ -43,7 +43,7 @@ extern int ft_getSaves(struct save_info **);
extern struct circ *ft_curckt;
extern struct circ *ft_circuits;
extern struct subcirc *ft_subcircuits;
extern void ft_newcirc(struct circ *ckt);
extern void ft_newcirc(struct circ *ci);
/* clip.c */

View File

@ -331,12 +331,12 @@ if_setparam(CKTcircuit *ckt, char **name, char *param, struct dvec *val, int do_
/* -------------------------------------------------------------------------- */
bool
if_tranparams(struct circ *ckt, double *start, double *stop, double *step)
if_tranparams(struct circ *ci, double *start, double *stop, double *step)
{
NG_IGNORE(step);
NG_IGNORE(stop);
NG_IGNORE(start);
NG_IGNORE(ckt);
NG_IGNORE(ci);
return FALSE;
}