Skip to content

Commit

Permalink
Remove 'malloc' from comment
Browse files Browse the repository at this point in the history
  • Loading branch information
1bsyl authored and slouken committed Nov 22, 2021
1 parent c3633d2 commit 155db97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/audio/SDL_wave.h
Expand Up @@ -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;

Expand Down

0 comments on commit 155db97

Please sign in to comment.