main: fix "unused local variable" warning
The variables "success" and "error" are only used if SQLite support is enabled.
This commit is contained in:
parent
468b7d3aea
commit
45df3e5e54
|
@ -231,8 +231,10 @@ int main(int argc, char *argv[])
|
|||
Options options;
|
||||
clock_t start;
|
||||
bool create_db;
|
||||
#ifdef ENABLE_SQLITE
|
||||
bool success;
|
||||
GError *error = NULL;
|
||||
#endif
|
||||
|
||||
daemonize_close_stdin();
|
||||
|
||||
|
|
Loading…
Reference in New Issue