remove unused variable / resolve compiler warning

pull/6113/head
Brendan McDonnell 2018-02-15 12:41:43 -05:00
parent df4ceee4e1
commit 0dbfcb13a2
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) { int32_t Semaphore::wait_until(uint64_t millisec) {
uint64_t now = Kernel::get_ms_count(); uint64_t now = Kernel::get_ms_count();
uint32_t timeout;
if (now >= millisec) { if (now >= millisec) {
return wait(0); return wait(0);