Commit 144ad799 authored by Alex Viskovatoff's avatar Alex Viskovatoff Committed by Max Kellermann

output/solaris: add missing parameter to open_cloexec() call

parent a0dd1a1b
ver 0.16.1 (2010/??/??)
* audio_check: fix parameter in prototype
* output:
- solaris: add missing parameter to open_cloexec() cal
ver 0.16 (2010/12/11)
......
......@@ -93,7 +93,7 @@ solaris_output_open(void *data, struct audio_format *audio_format,
/* open the device in non-blocking mode */
so->fd = open_cloexec(so->device, O_WRONLY|O_NONBLOCK);
so->fd = open_cloexec(so->device, O_WRONLY|O_NONBLOCK, 0);
if (so->fd < 0) {
g_set_error(error, solaris_output_quark(), errno,
"Failed to open %s: %s",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment