am ce1928e9
: Merge "Add required casts for clang/llvm -Wc++11-narrowing"
* commit 'ce1928e987923a276ff048c69d9a6f43f22610ba': Add required casts for clang/llvm -Wc++11-narrowing
This commit is contained in:
commit
62ea6b268f
1 changed files with 2 additions and 2 deletions
|
@ -131,8 +131,8 @@ inline status_t Mutex::tryLock() {
|
|||
#if HAVE_ANDROID_OS
|
||||
inline status_t Mutex::timedLock(nsecs_t timeoutNs) {
|
||||
const struct timespec ts = {
|
||||
/* .tv_sec = */ timeoutNs / 1000000000,
|
||||
/* .tv_nsec = */ timeoutNs % 1000000000,
|
||||
/* .tv_sec = */ static_cast<time_t>(timeoutNs / 1000000000),
|
||||
/* .tv_nsec = */ static_cast<long>(timeoutNs % 1000000000),
|
||||
};
|
||||
return -pthread_mutex_timedlock(&mMutex, &ts);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue