From de9c9528a08ce9e571e6742810cc7c3e6eb87aef Mon Sep 17 00:00:00 2001 From: Ruben Kerkhof Date: Thu, 3 Mar 2016 23:02:03 +0100 Subject: [PATCH] Turbostat: fix a few old-style prototypes --- src/turbostat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.30.2