From de8ce191d0a0332f03928a3e6c840ff058f8e1bd Mon Sep 17 00:00:00 2001 From: Aki Tuomi Date: Sat, 4 Oct 2014 14:00:38 +0300 Subject: [PATCH] Use Utility::usleep instead of usleep --- pdns/ssqlite3.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/ssqlite3.cc b/pdns/ssqlite3.cc index a35571a925..9fecceaaa4 100644 --- a/pdns/ssqlite3.cc +++ b/pdns/ssqlite3.cc @@ -97,7 +97,7 @@ int SSQLite3::doQuery( const std::string & query ) int SSQLite3::busyHandler(void*, int) { - usleep(1000); + Utility::usleep(1000); return 1; } -- 2.47.2