mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-21 08:17:40 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user