summaryrefslogtreecommitdiffstats
path: root/runtime/rsconf.c
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/rsconf.c')
-rw-r--r--runtime/rsconf.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/runtime/rsconf.c b/runtime/rsconf.c
index 9c6bf00e..5d2407ec 100644
--- a/runtime/rsconf.c
+++ b/runtime/rsconf.c
@@ -387,7 +387,8 @@ yyerror(char *s)
}
void cnfDoObj(struct cnfobj *o)
{
-int bChkUnuse = 1; // TODO: Delete
+ int bChkUnuse = 1;
+
dbgprintf("cnf:global:obj: ");
cnfobjPrint(o);
switch(o->objType) {
@@ -405,12 +406,12 @@ int bChkUnuse = 1; // TODO: Delete
break;
case CNFOBJ_PROPERTY:
case CNFOBJ_CONSTANT:
- //processTemplate(o);
-bChkUnuse = 0;
+ /* these types are processed at a later stage */
+ bChkUnuse = 0;
break;
}
-if(bChkUnuse)
- nvlstChkUnused(o->nvlst);
+ if(bChkUnuse)
+ nvlstChkUnused(o->nvlst);
cnfobjDestruct(o);
}