pcm_buffer: make the buffer pointer "void"

This commit is contained in:
Max Kellermann 2010-06-30 08:21:48 +02:00
parent 9eb292c1e5
commit 5a2820ca3d
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@
* would put too much stress on the allocator.
*/
struct pcm_buffer {
char *buffer;
void *buffer;
size_t size;
};