From: Aki Tuomi Date: Sat, 4 Oct 2014 11:00:38 +0000 (+0300) Subject: Use Utility::usleep instead of usleep X-Git-Tag: rec-3.7.0-rc1~229^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F1765%2Fhead;p=thirdparty%2Fpdns.git Use Utility::usleep instead of usleep --- 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; }