mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-25 14:33:52 +01:00
sys/shell: added missing return values
This commit is contained in:
parent
ac5e9af4e5
commit
bbaddc756d
@ -71,7 +71,7 @@ int _fib_route_handler(int argc, char **argv)
|
||||
/* e.g. fibroute right now dont care about the adress/protocol family */
|
||||
if (argc == 1) {
|
||||
fib_print_routes();
|
||||
return;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* e.g. firoute [add|del] */
|
||||
@ -209,4 +209,5 @@ int _fib_route_handler(int argc, char **argv)
|
||||
}
|
||||
|
||||
puts("\nunrecognized parameters.\nPlease enter fibroute [add|del] for more information.");
|
||||
return 1;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user