[v1.01] Merge bugfix branch

This commit is contained in:
Dr-Noob
2022-04-24 11:40:12 +01:00
3 changed files with 9 additions and 2 deletions

View File

@@ -19,6 +19,7 @@ enum {
CPU_VENDOR_HUAWUEI,
CPU_VENDOR_SAMSUNG,
CPU_VENDOR_MARVELL,
CPU_VENDOR_PHYTIUM,
// OTHERS
CPU_VENDOR_UNKNOWN,
CPU_VENDOR_INVALID

View File

@@ -60,7 +60,7 @@ void printBug(const char *fmt, ...) {
#if defined(ARCH_X86) || defined(ARCH_PPC)
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, the output of 'cpufetch' and '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 --verbose' and 'cpufetch --debug' on https://github.com/Dr-Noob/cpufetch/issues\n");
#endif
}