cmProc4.c : Fixed bug in _cmScModulatorReset() where the selected entry group was always the first entry group.

This commit is contained in:
kevin 2016-07-23 13:07:27 -04:00
parent c69942fb96
commit 198aa41b98

View File

@ -3035,7 +3035,7 @@ cmRC_t _cmScModulatorReset( cmScModulator* p, cmCtx_t* ctx, unsigned scLocIdx,
if( g->symId == entryGroupSymId ) if( g->symId == entryGroupSymId )
{ {
cmCtxPrint(p->obj.ctx,"%s selected.\n",cmSymTblLabel(p->stH,entryGroupSymId)); cmCtxPrint(p->obj.ctx,"%s selected.\n",cmSymTblLabel(p->stH,entryGroupSymId));
p->xlist = p->glist; p->xlist = g;
break; break;
} }
} }