summaryrefslogtreecommitdiffstats
path: root/polyp
diff options
context:
space:
mode:
Diffstat (limited to 'polyp')
-rw-r--r--polyp/module-solaris.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/polyp/module-solaris.c b/polyp/module-solaris.c
index 984a5f66..01a151d6 100644
--- a/polyp/module-solaris.c
+++ b/polyp/module-solaris.c
@@ -382,7 +382,7 @@ int pa__init(pa_core *c, pa_module*m) {
goto fail;
}
- if ((fd = open(p = pa_modargs_get_value(ma, "device", DEFAULT_DEVICE), mode)) < 0)
+ if ((fd = open(p = pa_modargs_get_value(ma, "device", DEFAULT_DEVICE), mode | O_NONBLOCK)) < 0)
goto fail;
pa_log_info(__FILE__": device opened in %s mode.\n", mode == O_WRONLY ? "O_WRONLY" : (mode == O_RDONLY ? "O_RDONLY" : "O_RDWR"));