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

silenced another warning

This commit is contained in:
Kenichi Ishigaki 2010-05-25 01:24:53 +00:00
parent 479cb58030
commit e86d56e673

View file

@ -1000,7 +1000,7 @@ sqlite_compile_options()
#if SQLITE_VERSION_NUMBER >= 3006023
#ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS
while(option = sqlite3_compileoption_get(i++)) {
while((option = sqlite3_compileoption_get(i++))) {
av_push(av, newSVpv(option, 0));
}
#endif