diff options
author | Pauli Nieminen <[email protected]> | 2009-09-20 21:08:42 +0300 |
---|---|---|
committer | Pauli Nieminen <[email protected]> | 2009-09-20 21:08:42 +0300 |
commit | 3640e4acde2fb050b1659271d1687a8a5f90365d (patch) | |
tree | efa4474fd59486efa7d288ad4dd31d52bfd1711f /src/mesa/drivers | |
parent | 5fa9a7a9a9cb87c8a86402981cc1b4affde95777 (diff) |
radeon: Fix typo in variable name.
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/radeon/radeon_debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/radeon/radeon_debug.h b/src/mesa/drivers/dri/radeon/radeon_debug.h index a59104168f0..26da31c1c48 100644 --- a/src/mesa/drivers/dri/radeon/radeon_debug.h +++ b/src/mesa/drivers/dri/radeon/radeon_debug.h @@ -156,7 +156,7 @@ static inline void radeon_debug_remove_indent(void) */ #define WARN_ONCE(a, ...) do { \ static int __warn_once=1; \ - if(__warn__once){ \ + if(__warn_once){ \ radeon_warning("*********************************WARN_ONCE*********************************\n"); \ radeon_warning("File %s function %s line %d\n", \ __FILE__, __FUNCTION__, __LINE__); \ |