Merge pull request #128 from OliverSmeeton/patch-1

Fix compile Error
This commit is contained in:
TheDarkBug 2021-08-31 19:28:02 +02:00 committed by GitHub
commit 034147f515
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -729,7 +729,7 @@ void print_ascii()
replace(line, "{LPINK}", LPINK); replace(line, "{LPINK}", LPINK);
// For manjaro // For manjaro
replace(line, "{BACKGROUND_GREEN}", "\e[0;42m"); replace(line, "{BACKGROUND_GREEN}", "\e[0;42m");
printf(line); printf("%s", line);
} }
// Always set color to NORMAL, so there's no need to do this in every ascii file. // Always set color to NORMAL, so there's no need to do this in every ascii file.
printf(NORMAL); printf(NORMAL);