From a47f9084dba807b858be5998ea9b6234e0c947cf Mon Sep 17 00:00:00 2001 From: John Emmas Date: Wed, 21 May 2014 12:45:13 +0100 Subject: [PATCH] Use Glib::usleep() for consistency --- libs/ardour/export_handler.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/export_handler.cc b/libs/ardour/export_handler.cc index c9f20d182e..716b69e0d8 100644 --- a/libs/ardour/export_handler.cc +++ b/libs/ardour/export_handler.cc @@ -338,7 +338,7 @@ ExportHandler::finish_timespan () while (se->is_running ()) { // wait for system exec to terminate // std::cerr << "waiting..." << std::endl; - usleep (1000); + Glib::usleep (1000); } } std::cerr << "done! deleting..." << std::endl;