Nasal is C code, not C++

This commit is contained in:
Frederic Bouvier 2012-04-29 00:17:38 +02:00
parent db6e99f885
commit dfc4b1564f

View File

@ -121,11 +121,12 @@ naRef naNewFunc(struct Context* c, naRef code)
naRef naNewGhost(naContext c, naGhostType* type, void* ptr)
{
naRef ghost;
// ensure 'simple' ghost users don't see garbage for these fields
type->get_member = 0;
type->set_member = 0;
naRef ghost = naNew(c, T_GHOST);
ghost = naNew(c, T_GHOST);
PTR(ghost).ghost->gtype = type;
PTR(ghost).ghost->ptr = ptr;
return ghost;