summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-11-10 23:08:18 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-11-10 23:08:18 +0000
commit0b8cc0b5cca73139cfbbb49f201a47718a3f955f (patch)
treefedd76d368f1a674c98300a419045a380e545517 /libs
parentb623bc32a0be9dd7b0ad379e4ffafdb6eb0308cd (diff)
fix OS X compilation
git-svn-id: svn://localhost/ardour2/branches/3.0@8000 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/pbd/file_manager.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/pbd/file_manager.cc b/libs/pbd/file_manager.cc
index 45f678ee5d..50f0f2b22d 100644
--- a/libs/pbd/file_manager.cc
+++ b/libs/pbd/file_manager.cc
@@ -116,7 +116,7 @@ FileManager::allocate (FileDescriptor* d)
}
#ifdef __APPLE__
- d->_last_used = get_absolute_time();
+ d->_last_used = mach_absolute_time();
#else
struct timespec t;
clock_gettime (CLOCK_MONOTONIC, &t);