From: Marcin Slusarz Date: Mon, 16 May 2011 19:53:06 +0000 (+0200) Subject: util: add \n to debug_checkpoint_full X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=155cf15ce216c3b67c13da1041401cbcc1c43b1e;p=mesa.git util: add \n to debug_checkpoint_full Signed-off-by: José Fonseca --- diff --git a/src/gallium/auxiliary/util/u_debug.h b/src/gallium/auxiliary/util/u_debug.h index c47c13c64cf..b5ea4050633 100644 --- a/src/gallium/auxiliary/util/u_debug.h +++ b/src/gallium/auxiliary/util/u_debug.h @@ -192,7 +192,7 @@ void _debug_assert_fail(const char *expr, */ #ifdef DEBUG #define debug_checkpoint_full() \ - _debug_printf("%s:%u:%s", __FILE__, __LINE__, __FUNCTION__) + _debug_printf("%s:%u:%s\n", __FILE__, __LINE__, __FUNCTION__) #else #define debug_checkpoint_full() \ ((void)0)