diff options
author | Ron <ron@debian.org> | 2009-06-27 04:44:24 +0930 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-07-05 20:27:17 -0400 |
commit | 916bd8eff0cac4abfd816b95f104064965623f3f (patch) | |
tree | f3763653b8e87f8ad26152d9ab8a456bb597253b /utils/ldd.c | |
parent | 95fa074d64848a0e4db471d6546b91ad60048d52 (diff) |
Don't shadow stat with a local variable
Signed-off-by: Ron Lee <ron@debian.org>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'utils/ldd.c')
-rw-r--r-- | utils/ldd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/ldd.c b/utils/ldd.c index 02b37f1cb..e7a94cbc4 100644 --- a/utils/ldd.c +++ b/utils/ldd.c @@ -683,8 +683,8 @@ foo: && ehdr->e_ident[EI_VERSION] == EV_CURRENT && MATCH_MACHINE(ehdr->e_machine)) { - struct stat statbuf; - if (stat(interp->path, &statbuf) == 0 && S_ISREG(statbuf.st_mode)) { + struct stat st; + if (stat(interp->path, &st) == 0 && S_ISREG(st.st_mode)) { pid_t pid; int status; static const char *const environment[] = { |