add empty lines after warnings

This commit is contained in:
Holger Vogt 2020-04-28 09:31:13 +02:00
parent 8a6b8c4d36
commit 3f904908cc
2 changed files with 2 additions and 2 deletions

View File

@ -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);
}
}

View File

@ -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);