2008-03-15 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>

Fixed compilation error with g++-4.3
This commit is contained in:
Tatsuhiro Tsujikawa 2008-03-15 04:19:46 +00:00
parent 8dacfe45b8
commit 538a8fcfe7
58 changed files with 196 additions and 86 deletions

View file

@ -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");
}
}