diff options
author | Pauli Nieminen <[email protected]> | 2009-08-25 19:28:00 +0300 |
---|---|---|
committer | Pauli Nieminen <[email protected]> | 2009-08-25 19:35:41 +0300 |
commit | c3374bf97ecd82b915fb29c7c04951e2b75d4dbc (patch) | |
tree | f00b6561f6c8e27a5058f2aae601629d7844b64d /src/mesa/drivers/dri/r600/r700_debug.c | |
parent | 42ecb1287ebb8b6f29d300e8dcb0e9487504dabc (diff) |
radeon: Fix all compiler warnings.
Diffstat (limited to 'src/mesa/drivers/dri/r600/r700_debug.c')
-rw-r--r-- | src/mesa/drivers/dri/r600/r700_debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/r600/r700_debug.c b/src/mesa/drivers/dri/r600/r700_debug.c index ecdb75ad482..dabd0d2c259 100644 --- a/src/mesa/drivers/dri/r600/r700_debug.c +++ b/src/mesa/drivers/dri/r600/r700_debug.c @@ -75,7 +75,7 @@ void DumpHwBinary(int type, void *addr, int size) { DEBUGP("0x%08x,\t", *pHw); if (i%4 == 3) - DEBUGP("\n", *pHw); + DEBUGP("0x%08x\n", *pHw); pHw++; } |