From 92451277ced9ea16ee8735ef903839ee0134fe2a Mon Sep 17 00:00:00 2001 From: TheDarkBug Date: Sun, 3 Oct 2021 23:57:57 +0200 Subject: [PATCH] Forgot a little thing on latest commit... --- uwufetch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uwufetch.c b/uwufetch.c index 15c6029..789500c 100644 --- a/uwufetch.c +++ b/uwufetch.c @@ -1155,9 +1155,9 @@ void uwu_hw(char *hwname) { #define HW_TO_UWU(original, uwuified) \ replace_ignorecase(hwname, original, uwuified); - replace(hwname, "CPU", "CC\bPUwU"); // for some reasons this caused a segfault, using a \b char fixes it - replace(hwname, "cpu", "CPUwU"); + HW_TO_UWU("lenovo", "LenOwO") + HW_TO_UWU("cpu", "CC\bPUwU"); // for some reasons this caused a segfault, using a \b char fixes it HW_TO_UWU("gpu", "GPUwU") HW_TO_UWU("graphics", "Gwaphics") HW_TO_UWU("corporation", "COwOpowation")