1
0
Fork 0

src/Scripting/nasal-props.cxx: avoid gcc initialisation warning.

This commit is contained in:
Julian Smith 2020-06-14 18:21:51 +01:00
parent 03537a85d7
commit 4e855c3182

View file

@ -30,7 +30,7 @@ static void propNodeGhostDestroy(void* ghost)
if (!SGPropertyNode::put(prop)) delete prop;
}
naGhostType PropNodeGhostType = { propNodeGhostDestroy, "prop" };
naGhostType PropNodeGhostType = { propNodeGhostDestroy, "prop", nullptr, nullptr };
naRef propNodeGhostCreate(naContext c, SGPropertyNode* ghost)
{