Match \v as escaped character

Thanks Greg for noticing this!
This commit is contained in:
FRIGN 2015-10-02 15:43:17 +02:00 committed by sin
parent 627119df9f
commit ea986ea504
1 changed files with 1 additions and 1 deletions

2
od.c
View File

@ -56,7 +56,7 @@ printchar(FILE *f, unsigned char c)
}
break;
case 'c':
if (strchr("\a\b\t\n\b\f\r\0", c)) {
if (strchr("\a\b\t\n\v\f\r\0", c)) {
fprintf(f, "%3s ", escdict[c]);
} else {
fprintf(f, "%3c ", c);