From 38e7155cd6d26ff3048ded95c847601a88c058e4 Mon Sep 17 00:00:00 2001 From: SDL Wiki Bot Date: Sun, 31 May 2026 02:51:28 +0000 Subject: [PATCH] Sync SDL3 wiki -> header [ci skip] --- include/SDL3/SDL_stdinc.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/SDL3/SDL_stdinc.h b/include/SDL3/SDL_stdinc.h index 564a3fe188..e8f41543a0 100644 --- a/include/SDL3/SDL_stdinc.h +++ b/include/SDL3/SDL_stdinc.h @@ -1302,9 +1302,9 @@ extern "C" { /** * Free memory previously allocated with SDL_stack_alloc. * - * If SDL used alloca() to allocate this memory, this macro does nothing (other - * than insert `((void)(data)` so the compiler sees an expression) and the - * allocated memory will be automatically released when the function that + * If SDL used alloca() to allocate this memory, this macro does nothing + * (other than insert `((void)(data)` so the compiler sees an expression) and + * the allocated memory will be automatically released when the function that * called SDL_stack_alloc() returns. If SDL used SDL_malloc(), it will * SDL_free the memory immediately. *