diff options
-rw-r--r-- | sound/oss/msnd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/oss/msnd.c b/sound/oss/msnd.c index e4282d93a1aa..21eb6dce46df 100644 --- a/sound/oss/msnd.c +++ b/sound/oss/msnd.c | |||
@@ -100,7 +100,7 @@ void msnd_fifo_free(msnd_fifo *f) | |||
100 | int msnd_fifo_alloc(msnd_fifo *f, size_t n) | 100 | int msnd_fifo_alloc(msnd_fifo *f, size_t n) |
101 | { | 101 | { |
102 | msnd_fifo_free(f); | 102 | msnd_fifo_free(f); |
103 | f->data = (char *)vmalloc(n); | 103 | f->data = vmalloc(n); |
104 | f->n = n; | 104 | f->n = n; |
105 | f->tail = 0; | 105 | f->tail = 0; |
106 | f->head = 0; | 106 | f->head = 0; |