From 79c1479c8dbad03214696b16a78a61b03d25b3a1 Mon Sep 17 00:00:00 2001
From: Jim Meyering <meyering@fb.com>
Date: Sat, 8 Nov 2014 17:49:28 -0800
Subject: [PATCH] tests: fix typo in previous change

* tests/init.cfg (hex_printf_): Fix typo s/A-f/A-F/.
For the record, I introduced that error, not Norihiro.
---
 tests/init.cfg | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/init.cfg b/tests/init.cfg
index 1fb25f5..75a9494 100644
--- a/tests/init.cfg
+++ b/tests/init.cfg
@@ -160,5 +160,5 @@ or use the shortcut target of the toplevel Makefile,
 hex_printf_()
 {
   printf $(printf '\\%o' \
-    $(printf %s "$1"|sed 's,\\x\([0-9a-fA-f][0-9a-fA-f]\), 0x\1,g'))
+    $(printf %s "$1"|sed 's,\\x\([0-9a-fA-F][0-9a-fA-F]\), 0x\1,g'))
 }
-- 
2.1.2

