This is relative to master

>From 6a836ec2bf1f46dce7d129a0ea7991710494ca12 Mon Sep 17 00:00:00 2001
From: Greg Reagle <[email protected]>
Date: Fri, 2 Oct 2015 09:29:38 -0400
Subject: [PATCH] od: bugfix: "\v" was omitted from output of type 'c'

---
 od.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/od.c b/od.c
index 9521605..d2914a9 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\b\f\r\0", c)) {
 			fprintf(f, "%3s ", escdict[c]);
 		} else {
 			fprintf(f, "%3c ", c);
-- 
1.9.1

Reply via email to