diff --git a/src/frontend/inpcom.c b/src/frontend/inpcom.c index c4dfdd6b2..619a4676e 100644 --- a/src/frontend/inpcom.c +++ b/src/frontend/inpcom.c @@ -8692,7 +8692,7 @@ static void inp_rem_unused_models(struct nscope *root, struct card *deck) mark_all_binned(m->model->level, elem_model_name); } else { - fprintf(stderr, "warning, can't find model %s\n", + fprintf(stderr, "warning, can't find model %s\n\n", elem_model_name); } } diff --git a/src/spicelib/parser/inpdomod.c b/src/spicelib/parser/inpdomod.c index 563e3c393..2226f5461 100644 --- a/src/spicelib/parser/inpdomod.c +++ b/src/spicelib/parser/inpdomod.c @@ -659,7 +659,7 @@ char *INPdomodel(CKTcircuit *ckt, struct card *image, INPtables * tab) /* look for this model type and put it in the table of models */ type = INPtypelook(type_name); if(type < 0) { - err = tprintf("Unknown model type %s - ignored\n", type_name); + err = tprintf("Unknown model type %s - ignored\n\n", type_name); #ifdef TRACE printf("In INPdomodel, ignoring unknown model typ typename = %s . . .\n", type_name);