Skip to content
Snippets Groups Projects
Commit ee0e2c48 authored by Eugene Livis's avatar Eugene Livis
Browse files

Fixed minor build issue

parent 6680ca57
No related branches found
No related tags found
No related merge requests found
......@@ -61,7 +61,7 @@ TskCaseDb::newDb(const TSK_TCHAR * const path)
// ELTODO: check here which database to initialize
//TskDb *db = new TskDbSqlite(path, true);
return TskDbPostgreSQL(path, true);
TskDb *db = new TskDbPostgreSQL(path, true);
#else
TskDb *db = new TskDbSqlite(path, true);
#endif // TSK_WIN32
......@@ -103,7 +103,7 @@ TskCaseDb::openDb(const TSK_TCHAR * path)
// ELTODO: check here which database to initialize
//TskDb *db = new TskDbSqlite(path, true);
return TskDbPostgreSQL(path, true);
TskDb *db = new TskDbPostgreSQL(path, true);
#else
TskDb *db = new TskDbSqlite(path, true);
#endif // TSK_WIN32
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment