forked from M-Labs/artiq
firmware: fix compilation warning
This commit is contained in:
parent
12ee326fb4
commit
4e3e0d129c
|
@ -329,7 +329,7 @@ pub mod drtio {
|
|||
static mut SEEN_ASYNC_ERRORS: u8 = 0;
|
||||
|
||||
pub unsafe fn get_async_errors() -> u8 {
|
||||
let mut errors = SEEN_ASYNC_ERRORS;
|
||||
let errors = SEEN_ASYNC_ERRORS;
|
||||
SEEN_ASYNC_ERRORS = 0;
|
||||
errors
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue