mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
shell/sc_can: fix uninitialized warning
When compiled for `hifive1` board with `gcc-7.2.0` this warning was raised: 'ret' may be used uninitialized in this function [-Werror=maybe-uninitialized]
This commit is contained in:
parent
d3b5a79bc1
commit
eec88e3e53
@ -83,7 +83,7 @@ static int _dump(int argc, char **argv)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int ret;
|
||||
int ret = -1;
|
||||
struct can_filter filters[SC_CAN_MAX_FILTERS];
|
||||
conn_can_raw_t conn;
|
||||
struct can_frame frame;
|
||||
|
Loading…
Reference in New Issue
Block a user