https://github.com/libsdl-org/SDL/commit/9a2a0a146311e93a5dcbfe1b36ce82783cd0a72f
From 9a2a0a146311e93a5dcbfe1b36ce82783cd0a72f Mon Sep 17 00:00:00 2001
From: "Ryan C. Gordon" <[EMAIL REDACTED]>
Date: Sat, 22 Jul 2023 13:27:51 -0400
Subject: [PATCH] ps2audio: Delete errant character that got inserted before
previous commit.
---
src/audio/ps2/SDL_ps2audio.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/audio/ps2/SDL_ps2audio.c b/src/audio/ps2/SDL_ps2audio.c
index 0f16344b7332..e50a497dffdd 100644
--- a/src/audio/ps2/SDL_ps2audio.c
+++ b/src/audio/ps2/SDL_ps2audio.c
@@ -112,7 +112,7 @@ static void PS2AUDIO_CloseDevice(SDL_AudioDevice *device)
if (device->hidden->rawbuf != NULL) {
SDL_aligned_free(device->hidden->rawbuf);
- device->hidden->rawbuf =2 NULL;
+ device->hidden->rawbuf = NULL;
}
SDL_free(device->hidden);
device->hidden = NULL;