mirror of
https://github.com/OpenMW/openmw.git
synced 2025-12-07 21:34:33 +00:00
Fix error message
This commit is contained in:
parent
cfd7f52a2f
commit
d171915b6a
1 changed files with 1 additions and 1 deletions
|
|
@ -100,7 +100,7 @@ namespace Sqlite3
|
|||
{
|
||||
if (type != SQLITE_NULL)
|
||||
throw std::logic_error("Type of column " + std::to_string(index) + " is " + sqliteTypeToString(type)
|
||||
+ " that does not match expected output type: SQLITE_INTEGER or SQLITE_FLOAT");
|
||||
+ " that does not match expected output type: SQLITE_NULL");
|
||||
value = nullptr;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue