main: fix "unused local variable" warning

The variables "success" and "error" are only used if SQLite support is
enabled.
This commit is contained in:
Max Kellermann 2009-07-06 22:48:34 +02:00
parent 468b7d3aea
commit 45df3e5e54
1 changed files with 2 additions and 0 deletions

View File

@ -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();