diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-07-29 17:13:56 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-07-29 17:13:56 +0000 |
commit | 9031847df28b108a2c83da24e7465d63ee586595 (patch) | |
tree | dcc4ccf0fa5abe1223a25d668e231fb7a8ea9433 /sysdeps/i386/bits | |
parent | ea3e6a3a65a176a77f829e82939a13d15a1264dc (diff) | |
download | glibc-9031847df28b108a2c83da24e7465d63ee586595.tar.gz glibc-9031847df28b108a2c83da24e7465d63ee586595.tar.xz glibc-9031847df28b108a2c83da24e7465d63ee586595.zip |
Update.
* sysdeps/i386/bits/string.h (__memset_cc): Fix typo in last patch.
Diffstat (limited to 'sysdeps/i386/bits')
-rw-r--r-- | sysdeps/i386/bits/string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/i386/bits/string.h b/sysdeps/i386/bits/string.h index 5f4f58a6db..44d6f8ba43 100644 --- a/sysdeps/i386/bits/string.h +++ b/sysdeps/i386/bits/string.h @@ -207,7 +207,7 @@ __memset_cc (void *__s, unsigned long int __pattern, size_t __n) return __s; case 3: __u->__usi = __pattern; - __u = __extension__ ((void *) __u + 1); + __u = __extension__ ((void *) __u + 2); __u->__uc = __pattern; return __s; case 4: |