Fix buildfix: there shouldn't be a zero there at all.

This commit is contained in:
Henrik Rydgård 2013-12-09 16:48:11 +01:00
parent c162e0e9ca
commit 980de339ce

View File

@ -150,7 +150,7 @@ static CCFlags FlipCCFlag(CCFlags flag)
case CC_LE: return CC_NLE;
case CC_NLE: return CC_LE;
}
ERROR_LOG_REPORT(JIT, 0, "FlipCCFlag: Unexpected CC flag: %d", flag);
ERROR_LOG_REPORT(JIT, "FlipCCFlag: Unexpected CC flag: %d", flag);
return CC_O;
}