diff options
author | Max Kellermann <max@duempel.org> | 2009-02-23 09:34:26 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-23 09:34:26 +0100 |
commit | a4dfab2aee0650970af4244c8f4b6c4d738d6c0c (patch) | |
tree | 6b0200009da13f5a3d7041f1a0b2e477b8e762da /src/output_internal.h | |
parent | 5a898c15e79ab87d2466e61549fcc20ce115c67e (diff) | |
download | mpd-a4dfab2aee0650970af4244c8f4b6c4d738d6c0c.tar.gz mpd-a4dfab2aee0650970af4244c8f4b6c4d738d6c0c.tar.xz mpd-a4dfab2aee0650970af4244c8f4b6c4d738d6c0c.zip |
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.
Diffstat (limited to 'src/output_internal.h')
-rw-r--r-- | src/output_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output_internal.h b/src/output_internal.h index 7d02ea679..c5ed7652a 100644 --- a/src/output_internal.h +++ b/src/output_internal.h @@ -113,7 +113,7 @@ struct audio_output { */ union { struct { - const char *data; + const void *data; size_t size; } play; |