examples/gnrc_tftp: fix implicit fallthrough error

This commit is contained in:
smlng 2018-01-18 15:07:31 +01:00
parent 83b111080f
commit 8f659ef41f

View File

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