Fixed some typos, courtesy of codespell

This commit is contained in:
Tobias Brunner
2018-05-23 16:33:02 +02:00
parent 1b67166921
commit 89bd016ef4
34 changed files with 36 additions and 36 deletions
@@ -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;
}