Browse Source

Use 1 in 2nd parameter of fwrite for consistency

Tatsuhiro Tsujikawa 9 years ago
parent
commit
bc77e48217
1 changed files with 4 additions and 2 deletions
  1. 4 2
      test/MultiDiskAdaptorTest.cc

+ 4 - 2
test/MultiDiskAdaptorTest.cc

@@ -270,18 +270,20 @@ void MultiDiskAdaptorTest::testResetDiskWriterEntries()
   }
 }
 
+namespace {
 void readFile(const std::string& filename, char* buf, int bufLength)
 {
   FILE* f = fopen(filename.c_str(), "r");
   if (f == nullptr) {
     CPPUNIT_FAIL(strerror(errno));
   }
-  int retval = fread(buf, bufLength, 1, f);
+  int retval = fread(buf, 1, bufLength, f);
   fclose(f);
-  if (retval != 1) {
+  if (retval != bufLength) {
     CPPUNIT_FAIL("return value is not 1");
   }
 }
+} // namespace
 
 void MultiDiskAdaptorTest::testWriteData()
 {