mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 11:38:05 +02:00
r600g: Remove unused variables.
Fixes these GCC warnings. radeon.c: In function 'radeon_new': radeon.c:59: warning: unused variable 'k' radeon.c:59: warning: unused variable 'j' radeon.c:59: warning: unused variable 'id' radeon.c:59: warning: unused variable 'i'
This commit is contained in:
parent
51bfd4e34a
commit
15f16328be
1 changed files with 1 additions and 1 deletions
|
|
@ -56,7 +56,7 @@ static int radeon_get_device(struct radeon *radeon)
|
|||
struct radeon *radeon_new(int fd, unsigned device)
|
||||
{
|
||||
struct radeon *radeon;
|
||||
int r, i, id, j, k;
|
||||
int r;
|
||||
|
||||
radeon = calloc(1, sizeof(*radeon));
|
||||
if (radeon == NULL) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue