diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-04-14 05:58:16 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-04-14 05:58:16 +0000 |
commit | 84aa52d7e9f9a70d6f011579ab1206d6d0bbe1af (patch) | |
tree | a3a729de0b4235d80a718e0cef72ac1d5012bb4d /stdio-common | |
parent | 9d26efa90c6dcbcd6b3e586c9927b6058ef4d529 (diff) | |
download | glibc-84aa52d7e9f9a70d6f011579ab1206d6d0bbe1af.tar glibc-84aa52d7e9f9a70d6f011579ab1206d6d0bbe1af.tar.gz glibc-84aa52d7e9f9a70d6f011579ab1206d6d0bbe1af.tar.bz2 glibc-84aa52d7e9f9a70d6f011579ab1206d6d0bbe1af.zip |
* sysdeps/x86-64/strrchr.S: New file.
Diffstat (limited to 'stdio-common')
-rw-r--r-- | stdio-common/reg-modifier.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/reg-modifier.c b/stdio-common/reg-modifier.c index beec2ecbe3..69bb2ef3d5 100644 --- a/stdio-common/reg-modifier.c +++ b/stdio-common/reg-modifier.c @@ -82,7 +82,7 @@ __register_printf_modifier (wchar_t *str) newp->next = __printf_modifier_table[(unsigned char) *str]; newp->bit = 1 << next_bit++; - wmemcpy (newp->str, str + 1, wc - str); + __wmemcpy (newp->str, str + 1, wc - str); __printf_modifier_table[(unsigned char) *str] = newp; |