From: Jim Meyering Date: Sat, 16 May 1998 20:21:39 +0000 (+0000) Subject: add copyright X-Git-Tag: FILEUTILS-3_16o~38 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=3fdd4e6cd2b058dfb3b05771e559c9ccef5d083d;p=thirdparty%2Fcoreutils.git add copyright --- diff --git a/src/printf.c b/src/printf.c index be7c33b42e..be74033949 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)