From 3f904908cc7ee6edfd6e46b3e6cd9267dfce6092 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Tue, 28 Apr 2020 09:31:13 +0200 Subject: [PATCH] add empty lines after warnings --- src/frontend/inpcom.c | 2 +- src/spicelib/parser/inpdomod.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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);