Module: Mesa Branch: main Commit: f18f43338eb45359fb250d27a185c0b5a3be4239 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=f18f43338eb45359fb250d27a185c0b5a3be4239
Author: Chia-I Wu <[email protected]> Date: Fri Feb 17 18:27:20 2023 -0800 mesa: add missing newlines for _mesa_debug/_mesa_log callers Reviewed-by: Emma Anholt <[email protected]> Reviewed-by: Jesse Natalie <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21454> --- src/mesa/main/externalobjects.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesa/main/externalobjects.c b/src/mesa/main/externalobjects.c index 13dbbcf045b..ed3f7cd07a3 100644 --- a/src/mesa/main/externalobjects.c +++ b/src/mesa/main/externalobjects.c @@ -189,7 +189,7 @@ _mesa_CreateMemoryObjectsEXT(GLsizei n, GLuint *memoryObjects) const char *func = "glCreateMemoryObjectsEXT"; if (MESA_VERBOSE & (VERBOSE_API)) - _mesa_debug(ctx, "%s(%d, %p)", func, n, memoryObjects); + _mesa_debug(ctx, "%s(%d, %p)\n", func, n, memoryObjects); if (!ctx->Extensions.EXT_memory_object) { _mesa_error(ctx, GL_INVALID_OPERATION, "%s(unsupported)", func); @@ -766,7 +766,7 @@ _mesa_GenSemaphoresEXT(GLsizei n, GLuint *semaphores) const char *func = "glGenSemaphoresEXT"; if (MESA_VERBOSE & (VERBOSE_API)) - _mesa_debug(ctx, "%s(%d, %p)", func, n, semaphores); + _mesa_debug(ctx, "%s(%d, %p)\n", func, n, semaphores); if (!ctx->Extensions.EXT_semaphore) { _mesa_error(ctx, GL_INVALID_OPERATION, "%s(unsupported)", func);
