mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 05:57:36 +03:00
2008-03-15 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Fixed compilation error with g++-4.3
This commit is contained in:
parent
8dacfe45b8
commit
538a8fcfe7
58 changed files with 196 additions and 86 deletions
|
@ -2,6 +2,8 @@
|
|||
#include "FileEntry.h"
|
||||
#include "Exception.h"
|
||||
#include <string>
|
||||
#include <cerrno>
|
||||
#include <cstring>
|
||||
#include <cppunit/extensions/HelperMacros.h>
|
||||
|
||||
namespace aria2 {
|
||||
|
@ -48,12 +50,12 @@ std::deque<SharedHandle<FileEntry> > createEntries() {
|
|||
void readFile(const std::string& filename, char* buf, int bufLength) {
|
||||
FILE* f = fopen(filename.c_str(), "r");
|
||||
if(f == NULL) {
|
||||
abort();
|
||||
CPPUNIT_FAIL(strerror(errno));
|
||||
}
|
||||
int retval = fread(buf, bufLength, 1, f);
|
||||
fclose(f);
|
||||
if(retval != 1) {
|
||||
abort();
|
||||
CPPUNIT_FAIL("return value is not 1");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue