=/== issue

git-svn-id: https://profuse.googlecode.com/svn/branches/v2@288 aa027e90-d47c-11dd-86d7-074df07e0730
This commit is contained in:
ksherlock 2010-05-27 16:23:24 +00:00
parent 54a75af101
commit e4efb135ed
1 changed files with 1 additions and 1 deletions

View File

@ -237,7 +237,7 @@ void FileEntry::truncateCommon(unsigned newSize)
_lastBlock = 1 + _firstBlock + newSize / 512;
_lastByte = newSize % 512;
if (_lastByte = 0) _lastByte = 512;
if (_lastByte == 0) _lastByte = 512;
}