1
0
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:
BytesGalore 2015-04-14 11:41:10 +02:00
parent ac5e9af4e5
commit bbaddc756d

View File

@ -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;
}