1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-24 11:31:31 +00:00

Fixed test negation. (#329)

Fixed test negation.
This commit is contained in:
Chris Cacciatore 2016-08-09 12:46:51 -07:00 committed by greg-king5
parent d90dff5861
commit f9482a1b72

View File

@ -237,7 +237,7 @@ void TypeConversion (ExprDesc* Expr, Type* NewType)
switch (TypeCmp (NewType, Expr->Type)) {
case TC_INCOMPATIBLE:
Error ("Incompatible pointer types at '%s'", (!Expr->Sym? Expr->Sym->Name : "Unknown"));
Error ("Incompatible pointer types at '%s'", (Expr->Sym? Expr->Sym->Name : "Unknown"));
break;
case TC_QUAL_DIFF: