From 155db97d144a6c1d49ed05a88ee8538e00c1c3e8 Mon Sep 17 00:00:00 2001 From: Sylvain Date: Mon, 22 Nov 2021 16:48:13 +0100 Subject: [PATCH] Remove 'malloc' from comment --- src/audio/SDL_wave.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/audio/SDL_wave.h b/src/audio/SDL_wave.h index e08825bce07a9..d533649300c52 100644 --- a/src/audio/SDL_wave.h +++ b/src/audio/SDL_wave.h @@ -96,7 +96,7 @@ typedef struct WaveChunk Uint32 fourcc; /* FOURCC of the chunk. */ Uint32 length; /* Size of the chunk data. */ Sint64 position; /* Position of the data in the stream. */ - Uint8 *data; /* When allocated, this points to the chunk data. length is used for the malloc size. */ + Uint8 *data; /* When allocated, this points to the chunk data. length is used for the memory allocation size. */ size_t size; /* Number of bytes in data that could be read from the stream. Can be smaller than length. */ } WaveChunk;