Use consistent syntax for boolean preprocessor expressions.

This commit is contained in:
Markus F.X.J. Oberhumer
2010-08-08 16:20:16 +02:00
parent 30c3f8c1ac
commit 0aff9d8df4
92 changed files with 251 additions and 253 deletions
+1 -1
View File
@@ -39,7 +39,7 @@
bool Packer::isValidCompressionMethod(int method)
{
if (M_IS_LZMA(method)) {
#if !defined(WITH_LZMA)
#if !(WITH_LZMA)
assert(0 && "Internal error - LZMA not compiled in");
#else
return true;