diff options
author | Michel Dänzer <michel.daenzer@amd.com> | 2015-03-17 16:47:11 +0900 |
---|---|---|
committer | Michel Dänzer <michel@daenzer.net> | 2015-03-17 16:47:11 +0900 |
commit | 4a98f60117c387a228d5cbaadb6e298fb4e865df (patch) | |
tree | e383c3b374acbb0fa4455fce9f70ffb9c5894295 /src | |
parent | 694e04720b886060fe3eefdce59741f218c8269f (diff) |
Add xorg_list_for_each_entry_safe fallback in radeon_list.h
Fixes another build failure against older versions of xserver reported
by "Pali" on IRC.
Diffstat (limited to 'src')
-rw-r--r-- | src/radeon_list.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/radeon_list.h b/src/radeon_list.h index 40020136..77f74aff 100644 --- a/src/radeon_list.h +++ b/src/radeon_list.h @@ -33,6 +33,7 @@ #define xorg_list_add list_add #define xorg_list_del list_del #define xorg_list_for_each_entry list_for_each_entry +#define xorg_list_for_each_entry_safe list_for_each_entry_safe #endif #endif /* _RADEON_LIST_H_ */ |