diff options
author | Pauli Nieminen <suokkos@gmail.com> | 2010-03-22 15:14:16 +0200 |
---|---|---|
committer | Pauli Nieminen <suokkos@gmail.com> | 2010-03-22 15:16:02 +0200 |
commit | 361e8e911886784407c7aff91e09b9b2bfd5cde8 (patch) | |
tree | ec5cca25df3153d842beb0ec23d29505ac71e602 | |
parent | fce72d58036eb8a993bda1a7c5d74b8fcc819a8c (diff) |
mesa: Add end of line to the end of a debug output.
-rw-r--r-- | src/mesa/main/matrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/matrix.c b/src/mesa/main/matrix.c index 5c863f6f32..4b8c00b5b6 100644 --- a/src/mesa/main/matrix.c +++ b/src/mesa/main/matrix.c @@ -322,7 +322,7 @@ _mesa_LoadIdentity( void ) ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx); if (MESA_VERBOSE & VERBOSE_API) - _mesa_debug(ctx, "glLoadIdentity()"); + _mesa_debug(ctx, "glLoadIdentity()\n"); _math_matrix_set_identity( ctx->CurrentStack->Top ); ctx->NewState |= ctx->CurrentStack->DirtyFlag; |