commit 177db0859ddfac3cdb09cc286ffaad1addd63821
parent ffad8c4df856f4e7a681f40b9086d4ad683b300e
Author: sam-barr <samfbarr@outlook.com>
Date: Thu, 23 Apr 2020 09:50:28 -0500
make source of paleofetch's error messages clearer
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/paleofetch.c b/paleofetch.c
@@ -30,7 +30,7 @@ int status;
void halt_and_catch_fire(const char *message) {
if(status != 0) {
- printf("%s\n", message);
+ printf("paleofetch: %s\n", message);
exit(status);
}
}