Commit 45df3e5e authored by Max Kellermann's avatar Max Kellermann

main: fix "unused local variable" warning

The variables "success" and "error" are only used if SQLite support is enabled.
parent 468b7d3a
......@@ -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();
......
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