diff options
author | Chris Rankin <rankincj@yahoo.com> | 2011-10-03 12:11:56 +0100 |
---|---|---|
committer | Chris Rankin <rankincj@yahoo.com> | 2011-10-03 12:11:56 +0100 |
commit | 5db268a002e7a102855e84a3ff5e1c27ca7cb927 (patch) | |
tree | b97f50441023384ff052e4daa64a2086fc44b47d /src/dxr3/dxr3_decode_spu.c | |
parent | 5ec743f4ddf302d10b3547cfc18ae0ca8aed1edd (diff) | |
download | xine-lib-5db268a002e7a102855e84a3ff5e1c27ca7cb927.tar.gz xine-lib-5db268a002e7a102855e84a3ff5e1c27ca7cb927.tar.bz2 |
Prefix open_cloexec() and create_cloexec() with xine_, and add new xine_socket_cloexec() function.
Diffstat (limited to 'src/dxr3/dxr3_decode_spu.c')
-rw-r--r-- | src/dxr3/dxr3_decode_spu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dxr3/dxr3_decode_spu.c b/src/dxr3/dxr3_decode_spu.c index 8789ffa11..100ba7674 100644 --- a/src/dxr3/dxr3_decode_spu.c +++ b/src/dxr3/dxr3_decode_spu.c @@ -257,7 +257,7 @@ static spu_decoder_t *dxr3_spudec_open_plugin(spu_decoder_class_t *class_gen, xi else { /* open dxr3 spu device */ snprintf(tmpstr, sizeof(tmpstr), "/dev/em8300_sp-%d", this->devnum); - if ((this->fd_spu = open_cloexec(tmpstr, O_WRONLY)) < 0) { + if ((this->fd_spu = xine_open_cloexec(tmpstr, O_WRONLY)) < 0) { xprintf(this->stream->xine, XINE_VERBOSITY_LOG, _("dxr3_decode_spu: Failed to open spu device %s (%s)\n"), tmpstr, strerror(errno)); pthread_mutex_unlock(&this->dxr3_vo->spu_device_lock); |