Loading sound/oss/msnd.c +1 −1 Original line number Diff line number Diff line Loading @@ -100,7 +100,7 @@ void msnd_fifo_free(msnd_fifo *f) int msnd_fifo_alloc(msnd_fifo *f, size_t n) { msnd_fifo_free(f); f->data = (char *)vmalloc(n); f->data = vmalloc(n); f->n = n; f->tail = 0; f->head = 0; Loading Loading
sound/oss/msnd.c +1 −1 Original line number Diff line number Diff line Loading @@ -100,7 +100,7 @@ void msnd_fifo_free(msnd_fifo *f) int msnd_fifo_alloc(msnd_fifo *f, size_t n) { msnd_fifo_free(f); f->data = (char *)vmalloc(n); f->data = vmalloc(n); f->n = n; f->tail = 0; f->head = 0; Loading