Skip to content

Commit

Permalink
fix small but crucial debug-print mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
mohawk2 committed Feb 10, 2024
1 parent 0fd62df commit e1ba7e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Basic/Core/pdlapi.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ pdl_error pdl__ensure_trans(pdl_trans *trans,int what,int *wd, int recurse_count
}
for(j=vtable->nparents; j<vtable->npdls; j++)
flag |= trans->pdls[j]->state & PDL_ANYCHANGED;
PDLDEBUG_f(printf("pdl__ensure_trans after accum, par_pvaf=%"IND_FLAG" flag=", par_pvaf); pdl_dump_flags_fixspace(what, 0, PDL_FLAGS_PDL));
PDLDEBUG_f(printf("pdl__ensure_trans after accum, par_pvaf=%"IND_FLAG" flag=", par_pvaf); pdl_dump_flags_fixspace(flag, 0, PDL_FLAGS_PDL));
if (flag & PDL_PARENTDIMSCHANGED) REDODIMS(PDL_RETERROR, trans);
for(j=vtable->nparents; j<vtable->npdls; j++)
if(trans->pdls[j]->trans_parent == trans)
Expand Down

0 comments on commit e1ba7e6

Please sign in to comment.