diff options
author | Robert Noland <rnoland@FreeBSD.org> | 2008-10-13 17:52:41 +0000 |
---|---|---|
committer | Robert Noland <rnoland@FreeBSD.org> | 2008-10-13 17:52:41 +0000 |
commit | b470dd86f8b7f32a45f4dd50bd5ce0ce86ef09e9 (patch) | |
tree | 30a5c06f0b7622155c6367d4c7ccd9e41f631172 | |
parent | 41c257c7bffc75c1e0c6e9aab5cc245b40c7ca6d (diff) |
Notes
-rw-r--r-- | sys/dev/drm/drm_linux_list.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/drm/drm_linux_list.h b/sys/dev/drm/drm_linux_list.h index d0a5c7008a7cf..d2142a417ea7f 100644 --- a/sys/dev/drm/drm_linux_list.h +++ b/sys/dev/drm/drm_linux_list.h @@ -69,6 +69,6 @@ list_del(struct list_head *entry) { #define list_for_each_safe(entry, temp, head) \ for (entry = (head)->next, temp = (entry)->next; \ - temp != head; \ - entry = temp, temp = temp->next) + entry != head; \ + entry = temp, temp = entry->next) |