Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correct argument names of XS preparse()
preparse C function had prototype: SV * preparse(SV *dbh, const char *statement, IV ps_return, IV ps_accept, void *foo); But XS function had a ps_return and ps_accept argument names swapped: SV * preparse(dbh, statement, ps_accept, ps_return, foo=Nullch) SV * dbh This patch corrects the discrepancy.
- Loading branch information