From 3641391bd8c251aab73212f6769ec5dc4887fa02 Mon Sep 17 00:00:00 2001 From: Dr-Noob Date: Tue, 31 Aug 2021 10:06:09 +0200 Subject: [PATCH] [v1.00] Clarify what should be posted when a bug occurs --- src/common/global.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/global.c b/src/common/global.c index d0e9326..47d4752 100644 --- a/src/common/global.c +++ b/src/common/global.c @@ -58,9 +58,9 @@ void printBug(const char *fmt, ...) { va_end(args); fprintf(stderr,RED "[ERROR]: "RESET "%s\n",buffer); #if defined(ARCH_X86) || defined(ARCH_PPC) - fprintf(stderr,"Please, create a new issue with this error message and the output of 'cpufetch --debug' on https://github.com/Dr-Noob/cpufetch/issues\n"); + fprintf(stderr, "Please, create a new issue with this error message, the output of 'cpufetch' and 'cpufetch --debug' on https://github.com/Dr-Noob/cpufetch/issues\n"); #elif ARCH_ARM - fprintf(stderr,"Please, create a new issue with this error message, your smartphone/computer model and the output of 'cpufetch --debug' on https://github.com/Dr-Noob/cpufetch/issues\n"); + fprintf(stderr, "Please, create a new issue with this error message, your smartphone/computer model, the output of 'cpufetch' and 'cpufetch --debug' on https://github.com/Dr-Noob/cpufetch/issues\n"); #endif }