From 91da942b3330d3d5cdba4e185fb13b630ee49ab5 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Mon, 4 Dec 2023 21:54:38 -0800 Subject: [PATCH] Fixed warning C28251: Inconsistent annotation for 'SDL_RWvprintf_REAL': this instance has no annotations. --- src/file/SDL_rwops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/file/SDL_rwops.c b/src/file/SDL_rwops.c index 38aad554fb..3719267943 100644 --- a/src/file/SDL_rwops.c +++ b/src/file/SDL_rwops.c @@ -822,7 +822,7 @@ size_t SDL_RWprintf(SDL_RWops *context, SDL_PRINTF_FORMAT_STRING const char *fmt return bytes; } -size_t SDL_RWvprintf(SDL_RWops *context, const char *fmt, va_list ap) +size_t SDL_RWvprintf(SDL_RWops *context, SDL_PRINTF_FORMAT_STRING const char *fmt, va_list ap) { int size; char *string;