Merge pull request #509 from oliverschmidt/master
Now that all supported targets echo the Return key on gets() there's no more need to print \n's.
This commit is contained in:
commit
f13316415f
@ -161,11 +161,10 @@ PROCESS_THREAD(wget_process, ev, data)
|
||||
PROCESS_PAUSE();
|
||||
}
|
||||
|
||||
fputs("\nGet url:", stdout);
|
||||
fputs("Get url:", stdout);
|
||||
gets(url);
|
||||
fputs("\nSave as:", stdout);
|
||||
fputs("Save as:", stdout);
|
||||
gets(name);
|
||||
puts("");
|
||||
file = cfs_open(name, CFS_WRITE);
|
||||
if(file == -1) {
|
||||
printf("Open error with '%s'\n", name);
|
||||
|
Loading…
Reference in New Issue
Block a user