diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-07-26 16:06:32 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-07-26 16:06:32 +0000 |
commit | b18ac18e67746792dd969e7ca0b8a92bae341cae (patch) | |
tree | f98a5ad465eabc3c283b7f2cee8ecd3f05781c5b /string | |
parent | ed1b3af2efd5fae15f5e52893c40cac210cb81a5 (diff) | |
download | glibc-b18ac18e67746792dd969e7ca0b8a92bae341cae.zip glibc-b18ac18e67746792dd969e7ca0b8a92bae341cae.tar.gz glibc-b18ac18e67746792dd969e7ca0b8a92bae341cae.tar.bz2 |
Update.
1999-07-26 Jakub Jelinek <jj@ultra.linux.jz>
* string/bits/string2.h (__strcpy_small): Avoid compile time warning.
(__stpcpy_small): Likewise.
Union has no __uc member but __c.
Diffstat (limited to 'string')
-rw-r--r-- | string/bits/string2.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/string/bits/string2.h b/string/bits/string2.h index f27ea62..d81f02f 100644 --- a/string/bits/string2.h +++ b/string/bits/string2.h @@ -497,7 +497,7 @@ __strcpy_small (char *__dest, __STRING2_COPY_ARR6 __sca6; __STRING2_COPY_ARR7 __sca7; __STRING2_COPY_ARR8 __sca8; - } *__u = __dest; + } *__u = (void *) __dest; switch (__srclen) { case 1: @@ -660,11 +660,11 @@ __stpcpy_small (char *__dest, __STRING2_COPY_ARR6 __sca6; __STRING2_COPY_ARR7 __sca7; __STRING2_COPY_ARR8 __sca8; - } *__u = __dest; + } *__u = (void *) __dest; switch (__srclen) { case 1: - __u->__uc = '\0'; + __u->__c = '\0'; break; case 2: __extension__ __u->__sca2 = __src2; |