From f8c1c8477a371c19d097b3f55ade15d2d737fcc9 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Tue, 7 Jul 2026 15:37:58 +0200 Subject: [PATCH] Improve the output format of the 'show' command, tested with various voltage sources. --- src/frontend/device.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/device.c b/src/frontend/device.c index fad93db81..73fee9699 100644 --- a/src/frontend/device.c +++ b/src/frontend/device.c @@ -1053,9 +1053,9 @@ printvals_old(dgen *dg, IFparm *p, int i) if (i >= n) { if (i == 0) - fprintf(cp_out, " -"); + fprintf(cp_out, " -"); else - fprintf(cp_out, " "); + fprintf(cp_out, " "); free_if_vec(p, &val); return 0; }