From 6055fda73d52fb146428cb754b8257c85260dcf5 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Wed, 18 Nov 2020 16:36:27 +0100 Subject: [PATCH] spaces --- src/frontend/inpcom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/inpcom.c b/src/frontend/inpcom.c index a7946c847..57ccf4d3e 100644 --- a/src/frontend/inpcom.c +++ b/src/frontend/inpcom.c @@ -7638,7 +7638,7 @@ static struct card *pspice_compat(struct card *oldcard) /* add funcs limit, pwr, pwrs, stp, if, int */ /* LIMIT( Output Expression, Limit1, Limit2) Output will stay between the two limits given. */ - new_str = copy(".func limit(x, a, b) { ternary_fcn(a>b, max(min(x, a), b), max(min(x, b), a)) }"); + new_str = copy(".func limit(x, a, b) { ternary_fcn(a > b, max(min(x, a), b), max(min(x, b), a)) }"); nextcard = insert_new_line(nextcard, new_str, 4, 0); new_str = copy(".func pwr(x, a) { pow(x, a) }"); nextcard = insert_new_line(nextcard, new_str, 5, 0);