Skip to content
Snippets Groups Projects
Commit 4d9e79ae authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Add missing static declarations.

parent 3cd897f2
No related branches found
No related tags found
No related merge requests found
......@@ -61,7 +61,7 @@ static const union namespaceSwitchValue
defaultSwitches_[NUM_NAMESPACE_SWITCH] = defaultSwitches;
#endif
struct Namespace
static struct Namespace
{
statusCode resStage;
union namespaceSwitchValue switches[NUM_NAMESPACE_SWITCH];
......@@ -70,7 +70,7 @@ struct Namespace
.switches = defaultSwitches
};
struct Namespace *namespaces = &initialNamespace;
static struct Namespace *namespaces = &initialNamespace;
static int namespacesSize = 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment