diff options
author | Marcin Slusarz <[email protected]> | 2011-05-16 21:53:06 +0200 |
---|---|---|
committer | José Fonseca <[email protected]> | 2011-06-06 12:41:07 +0100 |
commit | 155cf15ce216c3b67c13da1041401cbcc1c43b1e (patch) | |
tree | ef90de4753dd775635dfd996de39d38288ba2913 /src | |
parent | fb40f1f532b5ea9fb9069f81af9e80835c18b3de (diff) |
util: add \n to debug_checkpoint_full
Signed-off-by: José Fonseca <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/util/u_debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
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) |