SDL: Fix typo in SDL_audiocvt.c

From a44338cbc137749917902ae942d68d79976d8cb0 Mon Sep 17 00:00:00 2001
From: Ikko Eltociear Ashimine <[EMAIL REDACTED]>
Date: Tue, 15 Aug 2023 00:58:06 +0900
Subject: [PATCH] Fix typo in SDL_audiocvt.c

accomodate -> accommodate
---
 src/audio/SDL_audiocvt.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/audio/SDL_audiocvt.c b/src/audio/SDL_audiocvt.c
index dfcbcb2b8d54..afb13c163a02 100644
--- a/src/audio/SDL_audiocvt.c
+++ b/src/audio/SDL_audiocvt.c
@@ -1041,7 +1041,7 @@ int SDL_GetAudioStreamData(SDL_AudioStream *stream, void *voidbuf, int len)
         if (stream->src_spec.freq != stream->dst_spec.freq) {
             // calculate difference in dataset size after resampling. Use a Uint64 so the multiplication doesn't overflow.
             approx_request = (int) (size_t) ((((Uint64) approx_request) * stream->src_spec.freq) / stream->dst_spec.freq);
-            if (!stream->flushed) {  // do we need to fill the future buffer to accomodate this, too?
+            if (!stream->flushed) {  // do we need to fill the future buffer to accommodate this, too?
                 approx_request += stream->resampler_padding_frames - stream->future_buffer_filled_frames;
             }
         }