summaryrefslogtreecommitdiff
path: root/libs/ardour/sndfile_helpers.cc
diff options
context:
space:
mode:
authorTaybin Rutkin <taybin@taybin.com>2006-03-08 22:22:41 +0000
committerTaybin Rutkin <taybin@taybin.com>2006-03-08 22:22:41 +0000
commit52089ed9fbce56ea578eb24949c1371739eb108d (patch)
tree9de9c2d283a35dd580d37baed3389ea5893ae89f /libs/ardour/sndfile_helpers.cc
parent10976e9a3becedb9ecb40e29e82c6e374ffd6a60 (diff)
Fixed small FSRef error.
git-svn-id: svn://localhost/trunk/ardour2@360 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/sndfile_helpers.cc')
-rw-r--r--libs/ardour/sndfile_helpers.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/sndfile_helpers.cc b/libs/ardour/sndfile_helpers.cc
index af9816c29c..64a05e4734 100644
--- a/libs/ardour/sndfile_helpers.cc
+++ b/libs/ardour/sndfile_helpers.cc
@@ -221,18 +221,18 @@ get_soundfile_info (string path, SoundFileInfo& _info)
{
#ifdef HAVE_COREAUDIO
OSStatus err = noErr;
- FSRef* ref;
+ FSRef ref;
ExtAudioFileRef af = 0;
size_t size;
CFStringRef name;
- err = FSPathMakeRef ((UInt8*)path.c_str(), ref, 0);
+ err = FSPathMakeRef ((UInt8*)path.c_str(), &ref, 0);
if (err != noErr) {
ExtAudioFileDispose (af);
goto libsndfile;
}
- err = ExtAudioFileOpen(ref, &af);
+ err = ExtAudioFileOpen(&ref, &af);
if (err != noErr) {
ExtAudioFileDispose (af);
goto libsndfile;