aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbje <bje@138bc75d-0d04-0410-961f-82ee72b054a4>2005-07-15 01:45:25 +0000
committerbje <bje@138bc75d-0d04-0410-961f-82ee72b054a4>2005-07-15 01:45:25 +0000
commit0631cefe0c42ce79ef9e0f56eb2cd2e4863e91fd (patch)
tree427f4752aa7366e675c0bbbb41054aae50accc3e
parente3aadb92fca665ca3341a6789ed5d3fc8db25432 (diff)
* regex.c (TRANSLATE): Cast rhs of ternary expression to char.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102050 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--libiberty/ChangeLog4
-rw-r--r--libiberty/regex.c6
2 files changed, 8 insertions, 2 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog
index e2cbeb4741e..b038eaa640a 100644
--- a/libiberty/ChangeLog
+++ b/libiberty/ChangeLog
@@ -1,3 +1,7 @@
+2005-07-15 Ben Elliston <bje@au.ibm.com>
+
+ * regex.c (TRANSLATE): Cast rhs of ternary expression to char.
+
2005-07-12 Ben Elliston <bje@au.ibm.com>
* floatformat.c (floatformat_to_double): Add a comment about a
diff --git a/libiberty/regex.c b/libiberty/regex.c
index b7be99d25b2..951f2d10f33 100644
--- a/libiberty/regex.c
+++ b/libiberty/regex.c
@@ -2,7 +2,9 @@
version 0.12.
(Implements POSIX draft P1003.2/D11.2, except for some of the
internationalization features.)
- Copyright (C) 1993-1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+
+ Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
+ 2002, 2005 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -1918,7 +1920,7 @@ static reg_errcode_t byte_compile_range (unsigned int range_start,
? (char) translate[(unsigned char) (d)] : (d))
# else /* BYTE */
# define TRANSLATE(d) \
- (translate ? (char) translate[(unsigned char) (d)] : (d))
+ (translate ? (char) translate[(unsigned char) (d)] : (char) (d))
# endif /* WCHAR */
# endif