diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-01-20 05:22:38 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-01-20 05:22:38 +0000 |
commit | ee00109cd058fe28fec37f558dc673c9b3adc9db (patch) | |
tree | f4484976327a16a18c03949be3d880ab9863d75c | |
parent | 0295c6e90d6857f1bbd76215556dc4da414cfc2e (diff) | |
download | glibc-ee00109cd058fe28fec37f558dc673c9b3adc9db.tar.gz glibc-ee00109cd058fe28fec37f558dc673c9b3adc9db.tar.xz glibc-ee00109cd058fe28fec37f558dc673c9b3adc9db.zip |
Adjust for last change in ld-collate.c of adding alignment padding.
* locale/weight.h: Adjust for last change in ld-collate.c of adding alignment padding.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | locale/weight.h | 8 |
2 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index b5e96efc2d..96643d61ab 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,8 @@ characters. (collate_output): Correct various problems with alignment in the output file. + * locale/weight.h: Adjust for last change in ld-collate.c of adding + alignment padding. * stdlib/strfmon.c: Don't report an error if final NUL is at the end of the buffer. Set errno correctly if floating-point number diff --git a/locale/weight.h b/locale/weight.h index cc634c253b..6151faacea 100644 --- a/locale/weight.h +++ b/locale/weight.h @@ -68,6 +68,8 @@ findidx (const unsigned char **cpp) /* Up to the next entry. */ cp += nhere; + if ((1 + nhere) % __alignof__ (int32_t) != 0) + cp += __alignof__ (int32_t) - (1 + nhere) % __alignof__ (int32_t); } else { @@ -86,6 +88,9 @@ findidx (const unsigned char **cpp) { /* Cannot be in this range. */ cp += 2 * nhere; + if ((1 + 2 * nhere) % __alignof__ (int32_t) != 0) + cp += (__alignof__ (int32_t) + - (1 + 2 * nhere) % __alignof__ (int32_t)); continue; } @@ -98,6 +103,9 @@ findidx (const unsigned char **cpp) { /* Cannot be in this range. */ cp += 2 * nhere; + if ((1 + 2 * nhere) % __alignof__ (int32_t) != 0) + cp += (__alignof__ (int32_t) + - (1 + 2 * nhere) % __alignof__ (int32_t)); continue; } |