Support building with OpenWatcom 1.8. Silence some compiler warnings.

This commit is contained in:
Markus F.X.J. Oberhumer
2008-12-31 16:56:38 +01:00
parent 063bd58802
commit 25f1765f36
27 changed files with 219 additions and 257 deletions
+1 -1
View File
@@ -164,7 +164,7 @@ int PackW32Pe::readFileHeader()
char buf[6];
fi->seek(0x200, SEEK_SET);
fi->readx(buf, 6);
isrtm = memcmp(&buf, "32STUB" ,6) == 0;
isrtm = memcmp(buf, "32STUB" ,6) == 0;
return super::readFileHeader();
}