From 2afc8bbbe4f529c5847cfbe1757e55c47e4656fe Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 30 Jan 2020 20:17:35 +0900 Subject: Removed explicit usage of the 'register' keyword. Signed-off-by: Michele Calgaro (cherry picked from commit 8250c8e42310cb39ceb6ae425bc8546208733e99) --- ksysguard/ksysguardd/FreeBSD/CPU.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'ksysguard/ksysguardd/FreeBSD/CPU.c') diff --git a/ksysguard/ksysguardd/FreeBSD/CPU.c b/ksysguard/ksysguardd/FreeBSD/CPU.c index 90d0c4721..0d83cd7f6 100644 --- a/ksysguard/ksysguardd/FreeBSD/CPU.c +++ b/ksysguard/ksysguardd/FreeBSD/CPU.c @@ -212,15 +212,15 @@ long percentages(cnt, out, new, old, diffs) int cnt; int *out; -register long *new; -register long *old; +long *new; +long *old; long *diffs; { - register int i; - register long change; - register long total_change; - register long *dp; + int i; + long change; + long total_change; + long *dp; long half_total; /* initialization */ -- cgit v1.2.1