mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Avoid unintentional trigraph.
This commit is contained in:
parent
42959a87a7
commit
c7c5d95d56
2 changed files with 2 additions and 2 deletions
|
|
@ -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 );
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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 );
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue