pcm_buffer: make the buffer pointer "void"

This commit is contained in:
Max Kellermann 2010-06-30 21:55:46 +02:00
parent ec89ce5a8a
commit 768be22f7c

View File

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