From ea986ea50489969a0c4201a0c4e56efeef214914 Mon Sep 17 00:00:00 2001 From: FRIGN Date: Fri, 2 Oct 2015 15:43:17 +0200 Subject: [PATCH] Match \v as escaped character Thanks Greg for noticing this! --- od.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/od.c b/od.c index 9521605..31f8179 100644 --- a/od.c +++ b/od.c @@ -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);