Make an explicit conversion to satisfy the Windows compiler.

git-svn-id: http://yate.null.ro/svn/yate/trunk@5943 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
marian 2015-02-26 09:42:47 +00:00
parent 6d1a1111a6
commit 702cf6fd7a
1 changed files with 1 additions and 1 deletions

View File

@ -2213,7 +2213,7 @@ void Engine::initLibrary(const String& line, String* output)
*output << "\r\ncolorize=" << String::boolText(colorize);
*output << "\r\nsigabort=" << String::boolText(s_sigabrt);
*output << "\r\nlateabort=" << String::boolText(s_lateabrt);
*output << "\r\nlockable-wait=" << Lockable::wait();
*output << "\r\nlockable-wait=" << (uint64_t)Lockable::wait();
*output << "\r\nlockable-safety=" << String::boolText(Lockable::safety());
#endif
}