Changes by: antona
Update of /cvsroot/linux-ntfs/linux-ntfs/include
In directory usw-pr-cvs1:/tmp/cvs-serv21173
Modified Files:
list.h
Log Message:
Fixed headers
Index: list.h
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/include/list.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -U2 -r1.1 -r1.2
--- list.h 2001/04/10 23:43:10 1.1
+++ list.h 2001/04/11 15:48:20 1.2
@@ -147,6 +147,6 @@
*/
#define list_for_each(pos, head) \
- for (pos = (head)->next, prefetch(pos->next); pos != (head); \
- pos = pos->next, prefetch(pos->next))
+ for (pos = (head)->next, pos->next; pos != (head); \
+ pos = pos->next, pos->next)
#endif
|