diff options
author | José Fonseca <[email protected]> | 2008-09-10 10:33:03 +0900 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-09-10 10:33:03 +0900 |
commit | eb5b16d278e0f7ee0121049e43dfee1d52f2b0f7 (patch) | |
tree | d91de2407b3d2e7fdd8b5fce38b35c2b8d82c682 /src/gallium/auxiliary | |
parent | dc1834a873726b9920c2cae6ffad86e09d4637ee (diff) |
tgsi: Fix newline pos.
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_sanity.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_sanity.c b/src/gallium/auxiliary/tgsi/tgsi_sanity.c index 0b5bdd6ba1c..c6590272969 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_sanity.c +++ b/src/gallium/auxiliary/tgsi/tgsi_sanity.c @@ -322,7 +322,7 @@ epilog( /* Print totals, if any. */ if (ctx->errors || ctx->warnings) - debug_printf( "\n%u errors, %u warnings", ctx->errors, ctx->warnings ); + debug_printf( "%u errors, %u warnings\n", ctx->errors, ctx->warnings ); return TRUE; } |