Skip to content

Commit bc4dea2

Browse files
authored
Merge pull request #6113 from bmcdonnell-ionx/master
remove unused variable / resolve compiler warning
2 parents 659bcc3 + 0dbfcb1 commit bc4dea2

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

rtos/Semaphore.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ int32_t Semaphore::wait(uint32_t millisec) {
6060

6161
int32_t Semaphore::wait_until(uint64_t millisec) {
6262
uint64_t now = Kernel::get_ms_count();
63-
uint32_t timeout;
6463

6564
if (now >= millisec) {
6665
return wait(0);

0 commit comments

Comments
 (0)