1
0
mirror of https://git.disroot.org/80486DX2-66/polonium.git synced 2024-11-08 13:42:31 +05:30

main.c: printing config.: reword 1st string for clarity

This commit is contained in:
Intel A80486DX2-66 2024-07-07 21:28:48 +03:00
parent 1f428f8f00
commit 62e6b23f83
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -288,11 +288,11 @@ int main(int argc, char** argv) {
file_type = determine_file_type(file, file_path);
// print configuration: only damaging file contents, preserving line
// endings, operating on printable ASCII characters exclusively
// endings, operating exclusively on printable ASCII characters
printf("Configuration:\n"
"> Only damaging file contents: %s\n"
"> Preserving line endings: %s\n"
"> Operating on printable ASCII characters exclusively: %s\n",
"> Operating exclusively on printable ASCII characters: %s\n",
YES_NO(READ_CONFIG(C_CONTENTS)),
YES_NO(READ_CONFIG(C_LINE_ENDINGS)),
YES_NO(READ_CONFIG(C_PRINTABLE)));