From f18f43338eb45359fb250d27a185c0b5a3be4239 Mon Sep 17 00:00:00 2001 From: Chia-I Wu Date: Fri, 17 Feb 2023 18:27:20 -0800 Subject: [PATCH] mesa: add missing newlines for _mesa_debug/_mesa_log callers Reviewed-by: Emma Anholt Reviewed-by: Jesse Natalie Part-of: --- 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);