cleanup, muffle compiler warning
This commit is contained in:
parent
30abcd3c32
commit
33764b1f91
|
|
@ -1,3 +1,7 @@
|
|||
2012-01-07 Robert Larice
|
||||
* src/frontend/inpcom.c :
|
||||
cleanup, muffle compiler warning
|
||||
|
||||
2012-01-07 Robert Larice
|
||||
* src/spicelib/analysis/cktdojob.c :
|
||||
bug fix, CKTcurJob, make sure this is either up do date or NULL
|
||||
|
|
|
|||
|
|
@ -3992,7 +3992,7 @@ static void inp_compat(struct line *deck)
|
|||
midline = cut_line;
|
||||
cut_line = strrchr(str_ptr, '(');
|
||||
/* replace '(' with ',' and ')' with ' ' */
|
||||
for ( ; *str_ptr; *str_ptr++)
|
||||
for ( ; *str_ptr; str_ptr++)
|
||||
if (*str_ptr == '(')
|
||||
*str_ptr = ',';
|
||||
else if (*str_ptr == ')')
|
||||
|
|
|
|||
Loading…
Reference in New Issue