output: pass the music chunk pointer as void*, not char*

The meaning of the chunk depends on the audio format; don't suggest a
specific format by declaring the pointer as "char*", pass "void*"
instead.
This commit is contained in:
Max Kellermann
2009-02-23 09:34:26 +01:00
parent 5a898c15e7
commit a4dfab2aee
14 changed files with 21 additions and 21 deletions

View File

@@ -75,7 +75,7 @@ null_close(void *data)
}
static size_t
null_play(void *data, G_GNUC_UNUSED const char *chunk, size_t size)
null_play(void *data, G_GNUC_UNUSED const void *chunk, size_t size)
{
struct null_data *nd = data;
Timer *timer = nd->timer;