Commit 1944df6b authored by Chris Sanford's avatar Chris Sanford Committed by Jiri Kosina

trivial: unnecessary (void*) cast removal in sound/oss/msnd.c

This is a trivial patch that removes an unnecessary void pointer cast.
Signed-off-by: default avatarChris Sanford <crsanford@gmail.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 492d0f95
...@@ -100,7 +100,7 @@ void msnd_fifo_free(msnd_fifo *f) ...@@ -100,7 +100,7 @@ void msnd_fifo_free(msnd_fifo *f)
int msnd_fifo_alloc(msnd_fifo *f, size_t n) int msnd_fifo_alloc(msnd_fifo *f, size_t n)
{ {
msnd_fifo_free(f); msnd_fifo_free(f);
f->data = (char *)vmalloc(n); f->data = vmalloc(n);
f->n = n; f->n = n;
f->tail = 0; f->tail = 0;
f->head = 0; f->head = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment