Skip to content

Commit

Permalink
non-handled badflag warning use pdl_warn
Browse files Browse the repository at this point in the history
  • Loading branch information
mohawk2 committed Sep 27, 2024
1 parent 4c46e8f commit 457f345
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 @@ -1149,7 +1149,7 @@ char pdl_trans_badflag_from_inputs(pdl_trans *trans) {
break;
}
if (retval && (vtable->flags & PDL_TRANS_BADIGNORE)) {
printf("WARNING: %s does not handle bad values.\n", vtable->name);
pdl_pdl_warn("WARNING: %s does not handle bad values", vtable->name);
trans->bvalflag = 0; /* but still return true */
}
return retval;
Expand Down

0 comments on commit 457f345

Please sign in to comment.