Commit 88da687a authored by Claes Sjofors's avatar Claes Sjofors

Sev db compile fix

parent 836da3a0
...@@ -49,13 +49,14 @@ sev_db *sev_db::open_database( sev_eDbType type) ...@@ -49,13 +49,14 @@ sev_db *sev_db::open_database( sev_eDbType type)
return 0; return 0;
#endif #endif
} }
else if ( type == sev_eDbType_Sqlite) else if ( type == sev_eDbType_Sqlite) {
#if defined PWRE_CONF_SQLITE3 #if defined PWRE_CONF_SQLITE3
return sev_dbsqlite::open_database(); return sev_dbsqlite::open_database();
#else #else
printf( "** Release is not built with sqlite3\n"); printf( "** Release is not built with sqlite3\n");
return 0; return 0;
#endif #endif
}
else else
return 0; return 0;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment