From: Ruben Kerkhof Date: Thu, 3 Mar 2016 22:02:03 +0000 (+0100) Subject: Turbostat: fix a few old-style prototypes X-Git-Tag: collectd-5.5.2~37^2 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=de9c9528a08ce9e571e6742810cc7c3e6eb87aef Turbostat: fix a few old-style prototypes --- diff --git a/src/turbostat.c b/src/turbostat.c index 14ce29fd..e17e0c2c 100644 --- a/src/turbostat.c +++ b/src/turbostat.c @@ -805,7 +805,7 @@ guess: * Identify the functionality of the CPU */ static int __attribute__((warn_unused_result)) -probe_cpu() +probe_cpu(void) { unsigned int eax, ebx, ecx, edx, max_level; unsigned int fms, family, model; @@ -1147,7 +1147,7 @@ allocate_cpu_set(cpu_set_t ** set, size_t * size) { * Build a local representation of the cpu distribution */ static int __attribute__((warn_unused_result)) -topology_probe() +topology_probe(void) { unsigned int i; int ret;