summaryrefslogtreecommitdiff
path: root/expat
diff options
context:
space:
mode:
authorSebastian Pipping <sebastian@pipping.org>2022-08-28 01:34:40 +0200
committerGitHub <noreply@github.com>2022-08-28 01:34:40 +0200
commit0b826ea2027dad6d0ceb268fe5d94bd63da02c2e (patch)
tree5dd14894a97d81d80cf630e141816341b0e39773 /expat
parentfff6ef4c8769320c189beb44329bfab0cf257d8d (diff)
parent6225970379576d271c2c0170aedb00be030a6c3d (diff)
downloadlibexpat-git-0b826ea2027dad6d0ceb268fe5d94bd63da02c2e.tar.gz
Merge pull request #635 from libexpat/coverage-sh-fix-name-collision
coverage.sh: Fix name collision for -funsigned-char
Diffstat (limited to 'expat')
-rwxr-xr-xexpat/coverage.sh8
1 files changed, 3 insertions, 5 deletions
diff --git a/expat/coverage.sh b/expat/coverage.sh
index 5eb01256..260bcf56 100755
--- a/expat/coverage.sh
+++ b/expat/coverage.sh
@@ -51,11 +51,9 @@ _get_build_dir() {
local char_part=
if ${unicode_enabled}; then
- if ${with_unsigned_char}; then
- char_part=__ushort
- else
- char_part=__wchar_t
- fi
+ char_part=__wchar_t
+ elif ${with_unsigned_char}; then
+ char_part=__uchar
else
char_part=__char
fi