From: Ruben Kerkhof Date: Fri, 4 Mar 2016 16:53:13 +0000 (+0100) Subject: thermal plugin: mark some variables as static X-Git-Tag: collectd-5.6.0~447^2 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=325aa17348f4834ddd94258e6e0594870489fdec;hp=-c;p=collectd.git thermal plugin: mark some variables as static --- 325aa17348f4834ddd94258e6e0594870489fdec diff --git a/src/thermal.c b/src/thermal.c index 27c92bc7..54311a64 100644 --- a/src/thermal.c +++ b/src/thermal.c @@ -35,8 +35,8 @@ static const char *config_keys[] = { "ForceUseProcfs" }; -const char *const dirname_sysfs = "/sys/class/thermal"; -const char *const dirname_procfs = "/proc/acpi/thermal_zone"; +static const char *const dirname_sysfs = "/sys/class/thermal"; +static const char *const dirname_procfs = "/proc/acpi/thermal_zone"; static _Bool force_procfs = 0; static ignorelist_t *device_list;