Fix problems uncovered by VC++ (first time compiled by VC++)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19056 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jeff Cohen
2004-12-20 03:23:46 +00:00
parent 721d9aa060
commit e133721047
5 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -293,7 +293,7 @@ Archive::writeMember(
ARFile.write(data,fSize);
// Make sure the member is an even length
if (ARFile.tellp() & 1 == 1)
if ((ARFile.tellp() & 1) == 1)
ARFile << ARFILE_PAD;
// Free the compressed data, if necessary