From: graham.gower Date: Wed, 16 Dec 2009 03:09:02 +0000 (+0000) Subject: Don't mask variable of wider scope. X-Git-Url: https://git.librecmc.org/?p=oweals%2Fopkg-lede.git;a=commitdiff_plain;h=29208c4e40c475b544011681c3d735e4d46e88b2;ds=sidebyside Don't mask variable of wider scope. git-svn-id: http://opkg.googlecode.com/svn/trunk@493 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- diff --git a/libopkg/opkg_conf.c b/libopkg/opkg_conf.c index d773c16..a29666c 100644 --- a/libopkg/opkg_conf.c +++ b/libopkg/opkg_conf.c @@ -34,7 +34,7 @@ #include static int lock_fd; -char *lock_file; +static char *lock_file = NULL; static opkg_conf_t _conf; opkg_conf_t *conf = &_conf; @@ -398,7 +398,6 @@ opkg_conf_init(void) int i; char *tmp, *tmp_dir_base, **tmp_val; nv_pair_list_t tmp_dest_nv_pair_list; - char *lock_file = NULL; glob_t globbuf; char *etc_opkg_conf_pattern;