mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-08 06:38:12 -04:00
DBD-SQLite: squash further warnings
This commit is contained in:
parent
9e73f3d401
commit
bcefc3c6c9
1 changed files with 6 additions and 5 deletions
11
dbdimp.c
11
dbdimp.c
|
@ -1192,8 +1192,9 @@ sqlite3_db_create_aggregate(pTHX_ SV *dbh, const char *name, int argc, SV *aggr_
|
||||||
|
|
||||||
|
|
||||||
int
|
int
|
||||||
sqlite_db_collation_dispatcher(SV *func, int len1, const void *string1,
|
sqlite_db_collation_dispatcher(
|
||||||
int len2, const void *string2)
|
void *func, int len1, const void *string1,
|
||||||
|
int len2, const void *string2)
|
||||||
{
|
{
|
||||||
dTHX;
|
dTHX;
|
||||||
dSP;
|
dSP;
|
||||||
|
@ -1223,8 +1224,8 @@ sqlite_db_collation_dispatcher(SV *func, int len1, const void *string1,
|
||||||
|
|
||||||
int
|
int
|
||||||
sqlite_db_collation_dispatcher_utf8(
|
sqlite_db_collation_dispatcher_utf8(
|
||||||
SV *func, int len1, const void *string1,
|
void *func, int len1, const void *string1,
|
||||||
int len2, const void *string2)
|
int len2, const void *string2)
|
||||||
{
|
{
|
||||||
dTHX;
|
dTHX;
|
||||||
dSP;
|
dSP;
|
||||||
|
@ -1299,7 +1300,7 @@ sqlite3_db_create_collation(pTHX_ SV *dbh, const char *name, SV *func )
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
sqlite_db_progress_handler_dispatcher( SV *handler )
|
sqlite_db_progress_handler_dispatcher( void *handler )
|
||||||
{
|
{
|
||||||
dTHX;
|
dTHX;
|
||||||
dSP;
|
dSP;
|
||||||
|
|
Loading…
Add table
Reference in a new issue