src/Scripting/nasal-props.cxx: avoid gcc initialisation warning.
This commit is contained in:
parent
03537a85d7
commit
4e855c3182
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue