From 0b8cc0b5cca73139cfbbb49f201a47718a3f955f Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 10 Nov 2010 23:08:18 +0000 Subject: [PATCH] fix OS X compilation git-svn-id: svn://localhost/ardour2/branches/3.0@8000 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/pbd/file_manager.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);