- print proper information in zcc_compile.cpp.

This commit is contained in:
Christoph Oelckers 2016-12-24 23:52:52 +01:00
parent 5d8d15ecc3
commit 4ee2d4a1a4
1 changed files with 1 additions and 1 deletions

View File

@ -1323,7 +1323,7 @@ bool ZCCCompiler::CompileFields(PStruct *type, TArray<ZCC_VarDeclarator *> &Fiel
}
else if (hasnativechildren)
{
Error(field, "Cannot add field %s to %s. %s has native children which means it size may not change.", FName(name->Name).GetChars(), type->TypeName.GetChars(), FName(name->Name).GetChars());
Error(field, "Cannot add field %s to %s. %s has native children which means it size may not change.", FName(name->Name).GetChars(), type->TypeName.GetChars(), type->TypeName.GetChars());
}
else
{