mesa: add missing newlines for _mesa_debug/_mesa_log callers

Reviewed-by: Emma Anholt <emma@anholt.net>
Reviewed-by: Jesse Natalie <jenatali@microsoft.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21454>
This commit is contained in:
Chia-I Wu 2023-02-17 18:27:20 -08:00 committed by Marge Bot
parent 40e45eaef0
commit f18f43338e

View file

@ -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);