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