diff options
author | Dave Reisner <d@falconindy.com> | 2010-12-01 18:48:12 -0500 |
---|---|---|
committer | Dave Reisner <d@falconindy.com> | 2010-12-01 19:10:15 -0500 |
commit | 7807fc424fc66ce701646b962092376031ea31cb (patch) | |
tree | f12aec883d2db6fde2e6ece0ded24565f8566ca9 | |
parent | dd7d84ccf6c8df0f106025d075987a180e653a49 (diff) | |
download | expac-7807fc424fc66ce701646b962092376031ea31cb.tar.xz |
declare globals on separate lines for uniformity
-rw-r--r-- | expac.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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; |