From 6a9d30ee374ed328c83d1053731a3856e3e69c17 Mon Sep 17 00:00:00 2001 From: Dr-Noob Date: Mon, 23 Aug 2021 09:08:16 +0200 Subject: [PATCH] [v0.99][PPC] Fix printer in PPC to print using the whole terminal width --- src/common/printer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/printer.c b/src/common/printer.c index 1015fc7..4a3aa1d 100644 --- a/src/common/printer.c +++ b/src/common/printer.c @@ -637,7 +637,7 @@ bool print_cpufetch_ppc(struct cpuInfo* cpu, STYLE s, struct color** cs, struct longest_attribute = longest_attribute_length(art, attribute_fields); } - print_ascii_generic(art, longest_attribute, term->w - art->art->width, attribute_fields); + print_ascii_generic(art, longest_attribute, term->w, attribute_fields); return true; }