coredumpctl: initialize global vars

This commit is contained in:
Lennart Poettering 2012-10-26 20:23:28 +02:00
parent 85210bffd8
commit ccc403587c
1 changed files with 3 additions and 3 deletions

View File

@ -38,10 +38,10 @@ static enum {
ACTION_DUMP,
} arg_action = ACTION_LIST;
Set *matches;
FILE* output;
static Set *matches = NULL;
static FILE* output = NULL;
int arg_no_pager;
static int arg_no_pager = false;
static Set *new_matches(void) {
Set *set;