diff options
author | Max Kellermann <max@duempel.org> | 2008-10-26 19:54:57 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-26 19:54:57 +0100 |
commit | 21b8590b53699f92802cb95121e910033cbd4f11 (patch) | |
tree | 0a1d8fde8468929479d38a1e96e4938542e1d80a /src/decoder/_flac_common.c | |
parent | bbaedb17d52cf14cf1abc3f24a90dfa06f875440 (diff) | |
download | mpd-21b8590b53699f92802cb95121e910033cbd4f11.tar.gz mpd-21b8590b53699f92802cb95121e910033cbd4f11.tar.xz mpd-21b8590b53699f92802cb95121e910033cbd4f11.zip |
input_stream: removed the InputStream typedef
Everybody should use struct input_stream.
Diffstat (limited to 'src/decoder/_flac_common.c')
-rw-r--r-- | src/decoder/_flac_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder/_flac_common.c b/src/decoder/_flac_common.c index db43e0003..5c160c103 100644 --- a/src/decoder/_flac_common.c +++ b/src/decoder/_flac_common.c @@ -26,7 +26,7 @@ #include <FLAC/metadata.h> void init_FlacData(FlacData * data, struct decoder * decoder, - InputStream * inStream) + struct input_stream *inStream) { data->time = 0; data->position = 0; |