Commit 0a894029 authored by Federico G. Schwindt's avatar Federico G. Schwindt Committed by Lasse Karstensen

Handle OBJ_STICKY in flags

parent 28aef48a
......@@ -575,6 +575,10 @@ MCF_DumpRstParam(void)
printf("%sonly_root", q);
q = ", ";
}
if (pp->flags & OBJ_STICKY) {
printf("%sobj_sticky", q);
q = ", ";
}
printf("\n");
}
printf("\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment