diff options
Diffstat (limited to 'src/input/input_stdin_fifo.c')
-rw-r--r-- | src/input/input_stdin_fifo.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input/input_stdin_fifo.c b/src/input/input_stdin_fifo.c index 02c3d526a..e0aecdc39 100644 --- a/src/input/input_stdin_fifo.c +++ b/src/input/input_stdin_fifo.c @@ -251,10 +251,10 @@ static int stdin_plugin_open (input_plugin_t *this_gen ) { lprintf ("trying to open '%s'...\n", this->mrl); if (this->fh == -1) { - char *filename; + const char *filename; - filename = (char *) &this->mrl[5]; - this->fh = open_cloexec(filename, FILE_FLAGS); + filename = (const char *) &this->mrl[5]; + this->fh = xine_open_cloexec(filename, FILE_FLAGS); lprintf("filename '%s'\n", filename); |