kernel: timeout: Remove unneeded assignment
Fix warnings with value stored never read. Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
This commit is contained in:
parent
6e69d759a5
commit
9551f2708b
1 changed files with 1 additions and 1 deletions
|
@ -224,7 +224,7 @@ void sys_clock_announce(int32_t ticks)
|
|||
|
||||
announce_remaining = ticks;
|
||||
|
||||
struct _timeout *t = first();
|
||||
struct _timeout *t;
|
||||
|
||||
for (t = first();
|
||||
(t != NULL) && (t->dticks <= announce_remaining);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue