From: Sami Kerola Date: Sun, 28 Jul 2013 21:11:15 +0000 (+0100) Subject: lscpu: fix shadow declaration [smatch scan] X-Git-Tag: v2.24-rc1~416 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=145a3ca3649ae5645c4d97986627f1550b2bc208;p=thirdparty%2Futil-linux.git lscpu: fix shadow declaration [smatch scan] sys-utils/lscpu.c:572:22: warning: symbol 'fd' shadows an earlier one Signed-off-by: Sami Kerola --- diff --git a/sys-utils/lscpu.c b/sys-utils/lscpu.c index fbaaa31366..98cee16354 100644 --- a/sys-utils/lscpu.c +++ b/sys-utils/lscpu.c @@ -569,15 +569,15 @@ read_hypervisor(struct lscpu_desc *desc, struct lscpu_modifier *mod) /* IBM PR/SM */ } else if (path_exist(_PATH_PROC_SYSINFO)) { - FILE *fd = path_fopen("r", 0, _PATH_PROC_SYSINFO); + FILE *sysinfo_fd = path_fopen("r", 0, _PATH_PROC_SYSINFO); char buf[BUFSIZ]; - if (!fd) + if (!sysinfo_fd) return; desc->hyper = HYPER_IBM; desc->hypervisor = "PR/SM"; desc->virtype = VIRT_FULL; - while (fgets(buf, sizeof(buf), fd) != NULL) { + while (fgets(buf, sizeof(buf), sysinfo_fd) != NULL) { char *str; if (!strstr(buf, "Control Program:")) @@ -601,7 +601,7 @@ read_hypervisor(struct lscpu_desc *desc, struct lscpu_modifier *mod) while ((str = strstr(desc->hypervisor, " "))) memmove(str, str + 1, strlen(str)); } - fclose(fd); + fclose(sysinfo_fd); } /* OpenVZ/Virtuozzo - /proc/vz dir should exist