summaryrefslogtreecommitdiff
path: root/libs/ardour/sndfileimportable.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-07-27 00:41:28 +0200
committerRobin Gareus <robin@gareus.org>2015-07-27 00:41:28 +0200
commit949a45b748546c125e69d794b0f73565f376ab60 (patch)
treedc7a4636893d6636e1084659c7e5ee49dc0b1820 /libs/ardour/sndfileimportable.cc
parent009a06a7734272560d4d61350d98a2d279832ddf (diff)
fixes/updates for move to ::open()
Diffstat (limited to 'libs/ardour/sndfileimportable.cc')
-rw-r--r--libs/ardour/sndfileimportable.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/sndfileimportable.cc b/libs/ardour/sndfileimportable.cc
index 11cff41c35..7f108453b6 100644
--- a/libs/ardour/sndfileimportable.cc
+++ b/libs/ardour/sndfileimportable.cc
@@ -74,7 +74,7 @@ SndFileImportableSource::get_timecode_info (SNDFILE* sf, SF_BROADCAST_INFO* binf
SndFileImportableSource::SndFileImportableSource (const string& path)
{
- int fd = g_open (path.c_str (), SFM_READ, 0444);
+ int fd = g_open (path.c_str (), O_RDONLY, 0444);
if (fd == -1) {
throw failed_constructor ();
}