libc/glibc: fix glibc-2.10.1 patchset

There was a missing '#" to a '#define' line.
This commit is contained in:
Ilya A. Volynets-Evenbakh" 2010-10-31 20:17:30 +01:00
parent c63e59f57b
commit de889264bb

View File

@ -65,7 +65,7 @@ diff -durN glibc-2.10.1.orig/misc/sys/queue.h glibc-2.10.1/misc/sys/queue.h
(var); \
(var) = ((var)->field.tqe_next))
+define TAILQ_FOREACH_SAFE(var, head, field, tvar) \
+#define TAILQ_FOREACH_SAFE(var, head, field, tvar) \
+ for ((var) = TAILQ_FIRST((head)); \
+ (var) && ((tvar) = TAILQ_NEXT((var), field), 1); \
+ (var) = (tvar))