From 7169ad4bfaa727a1aee3e17010ce136df800b9ad Mon Sep 17 00:00:00 2001 From: rlar Date: Sun, 20 Nov 2016 18:46:57 +0100 Subject: [PATCH] subckt.c, translate(), #4/8 don't append trailing whitespace --- src/frontend/subckt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/subckt.c b/src/frontend/subckt.c index 5e3c64b29..9c85fba65 100644 --- a/src/frontend/subckt.c +++ b/src/frontend/subckt.c @@ -1038,7 +1038,7 @@ translate(struct line *deck, char *formal, char *actual, char *scname, const cha /* copy in the last token, which is the model name */ if (name) { - bxx_printf(&buffer, "%s ", name); + bxx_printf(&buffer, "%s", name); tfree(name); } /* Set s to null string for compatibility with code */