From 7807fc424fc66ce701646b962092376031ea31cb Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Wed, 1 Dec 2010 18:48:12 -0500 Subject: declare globals on separate lines for uniformity --- expac.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/expac.c b/expac.c index 96598fe..ded1432 100644 --- a/expac.c +++ b/expac.c @@ -42,8 +42,9 @@ #define FORMAT_TOKENS_SYNC "f" #define ESCAPE_TOKENS "\"\\abefnrtv" -alpm_list_t *dblist = NULL, *targets = NULL; -pmdb_t *db_local; +pmdb_t *db_local = NULL; +alpm_list_t *dblist = NULL; +alpm_list_t *targets = NULL; bool verbose = false; bool search = false; bool local = false; -- cgit v1.2.3-54-g00ecf