From 0ae2f47dc1fd0a0a47929cf4cd924e20d0fc88ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20=C4=B0nan?= Date: Sat, 10 Sep 2011 19:17:12 +0200 Subject: [PATCH] cleaned up --- alsa.c | 2 +- wav.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/alsa.c b/alsa.c index 091e301..18668c8 100644 --- a/alsa.c +++ b/alsa.c @@ -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; diff --git a/wav.c b/wav.c index 6392bbb..f46153d 100644 --- a/wav.c +++ b/wav.c @@ -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;