Merge pull request #6113 from bmcdonnell-ionx/master

remove unused variable / resolve compiler warning
pull/6125/head
Cruz Monrreal 2018-02-16 13:47:33 -06:00 committed by GitHub
commit bc4dea2b1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -60,7 +60,6 @@ int32_t Semaphore::wait(uint32_t millisec) {
int32_t Semaphore::wait_until(uint64_t millisec) {
uint64_t now = Kernel::get_ms_count();
uint32_t timeout;
if (now >= millisec) {
return wait(0);