Remove newline option in hex mode

This commit is contained in:
Martin Lund 2022-06-06 19:38:31 +02:00
parent 0b55981e52
commit 6d007d39d7
6 changed files with 5 additions and 21 deletions

View file

@ -29,7 +29,7 @@ char ansi_format[30];
void print_hex(char c)
{
if (((c == '\n') || (c == '\r')) && option.newline_in_hex)
if ((c == '\n') || (c == '\r'))
{
printf("%c", c);
}