]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 20 Aug 2003 00:08:24 +0000 (00:08 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 20 Aug 2003 00:08:24 +0000 (00:08 +0000)
* string/bits/string2.h (__STRING2_COPY_TYPE): Add attribute to
the type, not to name.

ChangeLog
string/bits/string2.h

index fdd807416b373d68126ffe0311bdce0a7c302d96..eb19467a3f8bb1536a4b8cb77bf984d6259abde1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2003-08-19  Ulrich Drepper  <drepper@redhat.com>
 
+       * string/bits/string2.h (__STRING2_COPY_TYPE): Add attribute to
+       the type, not to name.
+
        * stdio-common/test-vfprintf.c (main): Don't write temporary file
        into source directory.
 
index a02b0558f1aae7c4a06a139b9d10e21e017c6aba..1a58716710eb36de63132fff4ba3ade87b847817 100644 (file)
@@ -1,5 +1,5 @@
 /* Machine-independant string function optimizations.
-   Copyright (C) 1997,1998,1999,2000,2001,2002 Free Software Foundation, Inc.
+   Copyright (C) 1997-2002, 2003 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
 
@@ -76,7 +76,7 @@
    use unaligned memory accesses.  */
 # define __STRING2_COPY_TYPE(N) \
   typedef struct { unsigned char __arr[N]; }                                 \
-    __STRING2_COPY_ARR##N __attribute__ ((packed))
+    __attribute__ ((__packed__)) __STRING2_COPY_ARR##N
 __STRING2_COPY_TYPE (2);
 __STRING2_COPY_TYPE (3);
 __STRING2_COPY_TYPE (4);