1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 22:28:47 -04:00

DBD-SQLite: squash further warnings

This commit is contained in:
Kenichi Ishigaki 2009-06-19 06:23:21 +00:00
parent 9e73f3d401
commit bcefc3c6c9

View file

@ -1192,8 +1192,9 @@ sqlite3_db_create_aggregate(pTHX_ SV *dbh, const char *name, int argc, SV *aggr_
int
sqlite_db_collation_dispatcher(SV *func, int len1, const void *string1,
int len2, const void *string2)
sqlite_db_collation_dispatcher(
void *func, int len1, const void *string1,
int len2, const void *string2)
{
dTHX;
dSP;
@ -1223,8 +1224,8 @@ sqlite_db_collation_dispatcher(SV *func, int len1, const void *string1,
int
sqlite_db_collation_dispatcher_utf8(
SV *func, int len1, const void *string1,
int len2, const void *string2)
void *func, int len1, const void *string1,
int len2, const void *string2)
{
dTHX;
dSP;
@ -1299,7 +1300,7 @@ sqlite3_db_create_collation(pTHX_ SV *dbh, const char *name, SV *func )
}
int
sqlite_db_progress_handler_dispatcher( SV *handler )
sqlite_db_progress_handler_dispatcher( void *handler )
{
dTHX;
dSP;