Avoid unintentional trigraph.

This commit is contained in:
Garrett Wollman 2002-05-30 20:53:45 +00:00
parent 42959a87a7
commit c7c5d95d56
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=97627
2 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ static void PrintRcode( u_char rcode ) {
case CFT_ERR:
printf("\nName in conflict error.\n");
default:
printf("\n???=%0x\n", rcode );
printf("\n?%c?=%0x\n", '?', rcode );
}
}

View File

@ -112,7 +112,7 @@ static void PrintRcode( u_char rcode ) {
case CFT_ERR:
printf("\nName in conflict error.\n");
default:
printf("\n???=%0x\n", rcode );
printf("\n?%c?=%0x\n", '?', rcode );
}
}