diff options
Diffstat (limited to 'src/pulsecore/sound-file.c')
-rw-r--r-- | src/pulsecore/sound-file.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/pulsecore/sound-file.c b/src/pulsecore/sound-file.c index b1c509f2..50352930 100644 --- a/src/pulsecore/sound-file.c +++ b/src/pulsecore/sound-file.c @@ -63,7 +63,11 @@ int pa_sound_file_load( pa_memchunk_reset(chunk); memset(&sfinfo, 0, sizeof(sfinfo)); - if ((fd = open(fname, O_RDONLY|O_NOCTTY)) < 0) { + if ((fd = open(fname, O_RDONLY +#ifdef O_NOCTTY + |O_NOCTTY +#endif + )) < 0) { pa_log("Failed to open file %s: %s", fname, pa_cstrerror(errno)); goto finish; } |