Skip to content
Snippets Groups Projects
Commit 4940c36e authored by Ruud Overeem's avatar Ruud Overeem
Browse files

BugID: 826

parent 774c0787
No related branches found
No related tags found
No related merge requests found
......@@ -255,7 +255,12 @@ void ApplController::createParSubsets()
// nrProcs := x | 0
string procName = procList[procIdx];
int32 nrProcs = indexValue(procName, "()");
itsNrOfProcs += nrProcs;
if (nrProcs == 0) {
itsNrOfProcs++;
}
else {
itsNrOfProcs += nrProcs;
}
rtrim(procName, "()0123456789");
string procPrefix = applName +"." + procName;
......
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