summary refs log tree commit diff
path: root/iconvdata/iso646.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-04-28 09:57:10 +0000
committerUlrich Drepper <drepper@redhat.com>1998-04-28 09:57:10 +0000
commit4b8f94d33fbd2929bf1046c0c2df23b6110d0b8a (patch)
tree85d64747018c1cca3d249795fd56da8b1988a53c /iconvdata/iso646.c
parent17d519656a3705ad37665788c5ff6f6c19fb16d8 (diff)
downloadglibc-4b8f94d33fbd2929bf1046c0c2df23b6110d0b8a.tar.gz
glibc-4b8f94d33fbd2929bf1046c0c2df23b6110d0b8a.tar.xz
glibc-4b8f94d33fbd2929bf1046c0c2df23b6110d0b8a.zip
Update.
1998-04-27  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>

	* iconvdata/Makefile ($(objpfx)iconv-test.out): Use this as target
	instead of do-iconv-test.
	($(objpfx)gconv-modules): Define rule only if objpfx is not
	empty.

1998-04-27  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>

	* string/string.h: Fix feature test.

1998-04-27  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>

	* iconvdata/iso646.c (BODY): Don't use character constants that
	depend on signedness of char.
Diffstat (limited to 'iconvdata/iso646.c')
-rw-r--r--iconvdata/iso646.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/iconvdata/iso646.c b/iconvdata/iso646.c
index d3eaa77834..29a452d112 100644
--- a/iconvdata/iso646.c
+++ b/iconvdata/iso646.c
@@ -391,7 +391,7 @@ gconv_end (struct gconv_step *data)
 	break;								      \
       default:								      \
 	break;								      \
-      case '\x80' ... '\xff':						      \
+      case 0x80 ... 0xff:						      \
 	/* Illegal character.  */					      \
 	failure = GCONV_ILLEGAL_INPUT;					      \
 	break;								      \