diff options
author | Max Kellermann <max@duempel.org> | 2010-01-18 09:26:10 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-01-18 10:18:41 +0100 |
commit | 9cb7760c5eb63cb6b7034ec9d2cdf9af2f198652 (patch) | |
tree | c15ed352beb3637c4186f3000152bf1a39008896 /src/input/file_input_plugin.c | |
parent | fb9bd53328e3ff57ea4b3cfee24068f9fb54927b (diff) | |
download | mpd-9cb7760c5eb63cb6b7034ec9d2cdf9af2f198652.tar.gz mpd-9cb7760c5eb63cb6b7034ec9d2cdf9af2f198652.tar.xz mpd-9cb7760c5eb63cb6b7034ec9d2cdf9af2f198652.zip |
input_stream: added attribute "uri"
Diffstat (limited to '')
-rw-r--r-- | src/input/file_input_plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/file_input_plugin.c b/src/input/file_input_plugin.c index 173b7c2e8..a18de67b8 100644 --- a/src/input/file_input_plugin.c +++ b/src/input/file_input_plugin.c @@ -84,7 +84,7 @@ input_file_open(const char *filename, GError **error_r) #endif fis = g_new(struct file_input_stream, 1); - input_stream_init(&fis->base, &input_plugin_file); + input_stream_init(&fis->base, &input_plugin_file, filename); fis->base.size = st.st_size; fis->base.seekable = true; |