Use 0 instead of NULL in non-pointer context, fixes XCode 2.2 build, r=stejohns

This commit is contained in:
benjamin%smedbergs.us 2006-11-13 20:44:52 +00:00
Родитель 58e8088dae
Коммит 7c4419bc25
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -944,7 +944,7 @@ namespace avmplus
if (XMLObject::notifyNeeded(newXML))
{
Atom detail = prior ? prior->getValue()->atom() : NULL;
Atom detail = prior ? prior->getValue()->atom() : 0;
XMLObject* target = new (core->GetGC()) XMLObject(toplevel->xmlClass(), newXML);
target->nonChildChanges(toplevel->xmlClass()->kTextSet, newXML->getValue()->atom(), detail);
}