examples/gnrc_tftp: fix implicit fallthrough error
This commit is contained in:
parent
83b111080f
commit
8f659ef41f
@ -180,12 +180,12 @@ int tftp_server_cmd(int argc, char * *argv)
|
|||||||
tftp_server_stop();
|
tftp_server_stop();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
/* no break */
|
/* falls through */
|
||||||
|
|
||||||
default:
|
default:
|
||||||
printf("usage: %s [start|stop]\n", argv[0]);
|
printf("usage: %s [start|stop]\n", argv[0]);
|
||||||
return 0;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user