dri/r200: properly spell current_atom.
[mesa.git] / src / mesa / drivers / dri / r200 / r200_cmdbuf.c
index 931a9ecf8fe94da30e76e70d5d57b9e5c4c8fafe..a512c9d112a6d46cce613d0fb66daab463a512b3 100644 (file)
@@ -47,9 +47,9 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  */
 #define insert_at_tail_if(atom_list, atom) \
    do { \
-      struct radeon_state_atom* __atom = (atom); \
-      if (__atom->check) \
-        insert_at_tail((atom_list), __atom); \
+      struct radeon_state_atom* current_atom = (atom); \
+      if (current_atom->check) \
+        insert_at_tail((atom_list), current_atom); \
    } while(0)
 
 void r200SetUpAtomList( r200ContextPtr rmesa )