Skip to content

Commit

Permalink
Fix bug in access statistics print.
Browse files Browse the repository at this point in the history
  • Loading branch information
alja committed Aug 14, 2015
1 parent 3343cd3 commit f180e69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/XrdFileCache/XrdFileCachePrint.cc
Expand Up @@ -64,7 +64,7 @@ void Print::printFile(const std::string& path)

for (int i = 0; i <cfi.GetAccessCnt(); ++i ) {
Info::AStat a;
fh->Read(&a, off , sizeof(Info::AStat));
off += fh->Read(&a, off , sizeof(Info::AStat));
statv.push_back(a);
}

Expand Down

0 comments on commit f180e69

Please sign in to comment.