Author: ps-guest
Date: 2009-05-04 14:32:21 +0000 (Mon, 04 May 2009)
New Revision: 3443

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/kfreebsd/local-sys_queue_h.diff
Log:
fix up GNU/kFreeBSD specific macro LIST_FOREACH_SAFE.



Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog        2009-05-03 22:10:42 UTC (rev 
3442)
+++ glibc-package/trunk/debian/changelog        2009-05-04 14:32:21 UTC (rev 
3443)
@@ -4,6 +4,9 @@
   * hurd-i386/local-pthread_posix-option.diff: Set _POSIX_TIMEOUTS to 200112
     too, to fix gthread compilation in gcc-4.4
 
+  [ Petr Salinger ]
+  * fix up GNU/kFreeBSD specific macro LIST_FOREACH_SAFE.
+
  -- Aurelien Jarno <aure...@debian.org>  Tue, 28 Apr 2009 23:11:30 +0200
 
 glibc (2.9-9) unstable; urgency=low

Modified: glibc-package/trunk/debian/patches/kfreebsd/local-sys_queue_h.diff
===================================================================
--- glibc-package/trunk/debian/patches/kfreebsd/local-sys_queue_h.diff  
2009-05-03 22:10:42 UTC (rev 3442)
+++ glibc-package/trunk/debian/patches/kfreebsd/local-sys_queue_h.diff  
2009-05-04 14:32:21 UTC (rev 3443)
@@ -18,7 +18,7 @@
                (var) = ((var)->field.le_next))
  
 +#define       LIST_FOREACH_SAFE(var, head, field, tvar)                       
\
-+      for (((var) = ((head)->lh_first);                               \
++      for ((var) = ((head)->lh_first);                                \
 +          (var) && ((tvar) = ((var)->field.le_next), 1);              \
 +          (var) = (tvar))
 +


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to