Skip to content

Commit

Permalink
Add missing initialization.
Browse files Browse the repository at this point in the history
  • Loading branch information
alja authored and osschar committed Mar 9, 2016
1 parent 3fd83e9 commit a3134e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/XrdFileCache/XrdFileCacheFile.hh
Expand Up @@ -65,7 +65,7 @@ namespace XrdFileCache
bool m_downloaded;

Block(File *f, long long off, int size, bool m_prefetch) :
m_offset(off), m_file(f), m_prefetch(false), m_refcnt(0),
m_offset(off), m_file(f), m_prefetch(m_prefetch), m_refcnt(0),
m_errno(0), m_downloaded(false)
{
m_buff.resize(size);
Expand Down

0 comments on commit a3134e5

Please sign in to comment.