summaryrefslogtreecommitdiffstats
path: root/polyp/memchunk.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-09-01 00:46:56 +0000
committerLennart Poettering <lennart@poettering.net>2004-09-01 00:46:56 +0000
commit36550f4a66ae28e1b81b9b818c38cd0fcd1302a1 (patch)
treec76806652672d381462d3c0b6fe03995a80aae34 /polyp/memchunk.c
parent34fe8bd893ed9c7531bc4898b934ef9d4cdf3e68 (diff)
remove most -W compiler warnings
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@164 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'polyp/memchunk.c')
-rw-r--r--polyp/memchunk.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/polyp/memchunk.c b/polyp/memchunk.c
index 920189e2..87b9c1bd 100644
--- a/polyp/memchunk.c
+++ b/polyp/memchunk.c
@@ -40,7 +40,7 @@ void pa_memchunk_make_writable(struct pa_memchunk *c, struct pa_memblock_stat *s
n = pa_memblock_new(c->length, s);
assert(n);
- memcpy(n->data, c->memblock->data+c->index, c->length);
+ memcpy(n->data, (uint8_t*) c->memblock->data+c->index, c->length);
pa_memblock_unref(c->memblock);
c->memblock = n;
c->index = 0;
@@ -100,7 +100,7 @@ int pa_mcalign_pop(struct pa_mcalign *m, struct pa_memchunk *c) {
l = m->chunk.length;
assert(m->buffer && l);
- memcpy(m->buffer + m->buffer_fill, m->chunk.memblock->data + m->chunk.index, l);
+ memcpy((uint8_t*) m->buffer + m->buffer_fill, (uint8_t*) m->chunk.memblock->data + m->chunk.index, l);
m->buffer_fill += l;
m->chunk.index += l;
m->chunk.length -= l;
@@ -132,7 +132,7 @@ int pa_mcalign_pop(struct pa_mcalign *m, struct pa_memchunk *c) {
assert(!m->buffer);
m->buffer = pa_xmalloc(m->base);
m->chunk.length -= m->buffer_fill;
- memcpy(m->buffer, m->chunk.memblock->data + m->chunk.index + m->chunk.length, m->buffer_fill);
+ memcpy(m->buffer, (uint8_t*) m->chunk.memblock->data + m->chunk.index + m->chunk.length, m->buffer_fill);
}
if (m->chunk.length) {