From 5c9dbf65a3a4a2bc84d8c1802f7b6a70b8a13054 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 6 Apr 2024 02:09:48 -0400 Subject: [PATCH] SDL_version.h: Fix some whitespace. --- include/SDL3/SDL_version.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/SDL3/SDL_version.h b/include/SDL3/SDL_version.h index 11fc353ec..3ef442866 100644 --- a/include/SDL3/SDL_version.h +++ b/include/SDL3/SDL_version.h @@ -77,11 +77,11 @@ typedef struct SDL_Version * \sa SDL_Version * \sa SDL_GetVersion */ -#define SDL_VERSION(x) \ -{ \ - (x)->major = SDL_MAJOR_VERSION; \ - (x)->minor = SDL_MINOR_VERSION; \ - (x)->patch = SDL_PATCHLEVEL; \ +#define SDL_VERSION(x) \ +{ \ + (x)->major = SDL_MAJOR_VERSION; \ + (x)->minor = SDL_MINOR_VERSION; \ + (x)->patch = SDL_PATCHLEVEL; \ } /**