Skip to content

Commit

Permalink
Fixed C&P error.
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverschmidt committed Dec 3, 2015
1 parent 9d4553e commit 7288a36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/wget/wget.c
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ PROCESS_THREAD(wget_process, ev, data)
puts(url);
} else {
fgets(url, sizeof(url), stdin);
name[strlen(url) - 1] = 0;
url[strlen(url) - 1] = 0;
}
fputs("Save as:", stdout);
if(contiki_argc > 2) {
Expand Down

0 comments on commit 7288a36

Please sign in to comment.