summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@fb.com>2014-11-08 17:49:28 -0800
committerJim Meyering <meyering@fb.com>2014-11-08 17:52:15 -0800
commit79c1479c8dbad03214696b16a78a61b03d25b3a1 (patch)
treeecb4998ae9ba6638bd8b0db909b7856ff338ed95
parent7c476caba56c5d25ac0426d2092b3d00af43913e (diff)
downloadgrep-79c1479c8dbad03214696b16a78a61b03d25b3a1.tar.gz
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.
-rw-r--r--tests/init.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/init.cfg b/tests/init.cfg
index 1fb25f53..75a94941 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'))
}