From 3f62b1135e0a5358f71802bc1c49cbd2a80ce9fb Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Tue, 10 Apr 2012 09:46:01 -0600 Subject: [PATCH] build: avoid s390 compiler warnings I noticed these compiler warnings when building for the s390 architecture. * src/node_device/node_device_udev.c (udevDeviceMonitorStartup): Mark unused variable. * src/nodeinfo.c (linuxNodeInfoCPUPopulate): Avoid unused variable. (cherry picked from commit 9011a494acf0abb8da8fb45dbfb2ac8d7f2a994d) --- src/node_device/node_device_udev.c | 4 ++-- src/nodeinfo.c | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/node_device/node_device_udev.c b/src/node_device/node_device_udev.c index 438c2ebbf4..6418015a53 100644 --- a/src/node_device/node_device_udev.c +++ b/src/node_device/node_device_udev.c @@ -1,7 +1,7 @@ /* * node_device_udev.c: node device enumeration - libudev implementation * - * Copyright (C) 2009-2011 Red Hat, Inc. + * Copyright (C) 2009-2012 Red Hat, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -1604,7 +1604,7 @@ out: return ret; } -static int udevDeviceMonitorStartup(int privileged) +static int udevDeviceMonitorStartup(int privileged ATTRIBUTE_UNUSED) { udevPrivate *priv = NULL; struct udev *udev = NULL; diff --git a/src/nodeinfo.c b/src/nodeinfo.c index 26f8dc19eb..7e993a9ff4 100644 --- a/src/nodeinfo.c +++ b/src/nodeinfo.c @@ -231,10 +231,10 @@ int linuxNodeInfoCPUPopulate(FILE *cpuinfo, /* NOTE: hyperthreads are ignored here; they are parsed out of /sys */ while (fgets(line, sizeof(line), cpuinfo) != NULL) { - char *buf = line; # if defined(__x86_64__) || \ defined(__amd64__) || \ defined(__i386__) + char *buf = line; if (STRPREFIX(buf, "cpu MHz")) { char *p; unsigned int ui; @@ -253,6 +253,7 @@ int linuxNodeInfoCPUPopulate(FILE *cpuinfo, } # elif defined(__powerpc__) || \ defined(__powerpc64__) + char *buf = line; if (STRPREFIX(buf, "clock")) { char *p; unsigned int ui;