sqlite: return char* not void *

This commit is contained in:
Dane Springmeyer 2013-06-06 13:11:18 -07:00
parent 215c9e9123
commit 60b4f42891

View file

@ -126,7 +126,7 @@ public:
return (const char*) sqlite3_column_text (stmt_, col);
}
const void* column_blob (int col, int& bytes)
const char* column_blob (int col, int& bytes)
{
bytes = sqlite3_column_bytes (stmt_, col);
return (const char*) sqlite3_column_blob (stmt_, col);