Fixed some typos, courtesy of codespell
This commit is contained in:
@@ -61,7 +61,7 @@ METHOD(plugin_t, destroy, void,
|
||||
plugin_t *sqlite_plugin_create()
|
||||
{
|
||||
private_sqlite_plugin_t *this;
|
||||
int threadsave = 0;
|
||||
int threadsafe = 0;
|
||||
|
||||
INIT(this,
|
||||
.public = {
|
||||
@@ -74,10 +74,10 @@ plugin_t *sqlite_plugin_create()
|
||||
);
|
||||
|
||||
#if SQLITE_VERSION_NUMBER >= 3005000
|
||||
threadsave = sqlite3_threadsafe();
|
||||
threadsafe = sqlite3_threadsafe();
|
||||
#endif
|
||||
DBG2(DBG_LIB, "using SQLite %s, thread safety %d",
|
||||
sqlite3_libversion(), threadsave);
|
||||
sqlite3_libversion(), threadsafe);
|
||||
|
||||
return &this->public.plugin;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user