* src/metalink.c: Remove C++ style comments

This commit is contained in:
Tim Rühsen 2016-08-03 13:48:07 +02:00
parent 3e7e29f358
commit 7fad76db4c

View File

@ -155,10 +155,10 @@ retrieve_from_metalink (const metalink_t* metalink)
it as output_stream. We restore the original configuration
after we are finished with the file. */
if (opt.always_rest)
// continue previous download
/* continue previous download */
output_stream = fopen (mfile->name, "ab");
else
// create a file with an unique name
/* create a file with an unique name */
output_stream = unique_create (mfile->name, true, &filename);
output_stream_regular = true;