1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-05-24 03:06:46 +02:00

add copyright

This commit is contained in:
Jim Meyering
1998-05-16 20:21:39 +00:00
parent 42755ceb62
commit 3fdd4e6cd2
+1 -1
View 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)