Skip to content

Commit

Permalink
do not try to printf "%d" an SV*
Browse files Browse the repository at this point in the history
  • Loading branch information
Chip Salzenberg committed Apr 27, 2012
1 parent 7cc440c commit d9bf647
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mysql.xs
Expand Up @@ -304,7 +304,7 @@ do(dbh, statement, attr=Nullsv, ...)
if (DBIc_DBISTATE(imp_dbh)->debug >= 2)
PerlIO_printf(DBIc_LOGPIO(imp_dbh),
"mysql.xs do() use_server_side_prepare %d, async %d\n",
use_server_side_prepare, async);
use_server_side_prepare, SvTRUE(async));

hv_store((HV*)SvRV(dbh), "Statement", 9, SvREFCNT_inc(statement), 0);

Expand Down

0 comments on commit d9bf647

Please sign in to comment.