summaryrefslogtreecommitdiff
path: root/src/printf.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1998-05-16 20:21:39 +0000
committerJim Meyering <jim@meyering.net>1998-05-16 20:21:39 +0000
commit3fdd4e6cd2b058dfb3b05771e559c9ccef5d083d (patch)
tree7b180d048ee83ba0fc55e478b9d6ac8a0e849817 /src/printf.c
parent42755ceb629050c6812a65a6d9f970187e8a41d7 (diff)
downloadcoreutils-3fdd4e6cd2b058dfb3b05771e559c9ccef5d083d.tar.xz
add copyright
Diffstat (limited to 'src/printf.c')
-rw-r--r--src/printf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/printf.c b/src/printf.c
index be7c33b42..be7403394 100644
--- a/src/printf.c
+++ b/src/printf.c
@@ -224,7 +224,7 @@ print_esc (const char *escstart)
if (*p == 'x')
{
for (esc_length = 0, ++p;
- esc_length < 3 && ISXDIGIT (*(const unsigned char*)p);
+ esc_length < 3 && ISXDIGIT (*p);
++esc_length, ++p)
esc_value = esc_value * 16 + hextobin (*p);
if (esc_length == 0)