*** empty log message ***
This commit is contained in:
parent
a34130b446
commit
189375b761
|
@ -62,9 +62,9 @@ void add_files(
|
|||
}
|
||||
else
|
||||
{
|
||||
file f(f, file::in);
|
||||
f.seek(0, file::end);
|
||||
libtorrent::size_type size = f.tell();
|
||||
file fi(f, file::in);
|
||||
fi.seek(0, file::end);
|
||||
libtorrent::size_type size = fi.tell();
|
||||
t.add_file(l, size);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -52,6 +52,7 @@ typedef int mode_t;
|
|||
#include <fcntl.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/types.h>
|
||||
#include <errno.h>
|
||||
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue