cleaned up

This commit is contained in:
Ahmet İnan 2011-09-10 19:17:12 +02:00
parent efe2099405
commit 0ae2f47dc1
2 changed files with 2 additions and 2 deletions

2
alsa.c
View file

@ -16,7 +16,7 @@ typedef struct {
void (*info)(pcm_t *);
int (*rate)(pcm_t *);
int (*channels)(pcm_t *);
int (*rw)(struct pcm *, short *, int);
int (*rw)(pcm_t *, short *, int);
snd_pcm_t *pcm;
int index;
int frames;

2
wav.c
View file

@ -34,7 +34,7 @@ typedef struct {
void (*info)(pcm_t *);
int (*rate)(pcm_t *);
int (*channels)(pcm_t *);
int (*rw)(struct pcm *, short *, int);
int (*rw)(pcm_t *, short *, int);
void *p;
short *b;
size_t size;