]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
add copyright
authorJim Meyering <jim@meyering.net>
Sat, 16 May 1998 20:21:39 +0000 (20:21 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 16 May 1998 20:21:39 +0000 (20:21 +0000)
src/printf.c

index be7c33b42eecf4691b7b43186f4a9416a3847486..be74033949ce8fea7d81b7dc500c4621036f4882 100644 (file)
@@ -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)