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