Skip to content
Snippets Groups Projects
Commit 8f659ef4 authored by Sebastian Meiling's avatar Sebastian Meiling
Browse files

examples/gnrc_tftp: fix implicit fallthrough error

parent 83b11108
No related branches found
No related tags found
No related merge requests found
...@@ -180,12 +180,12 @@ int tftp_server_cmd(int argc, char * *argv) ...@@ -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;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment