From 97bd0931cd050d48a8b5a01570abe3c7d7b30c9e Mon Sep 17 00:00:00 2001 From: Marin Ramesa Date: Mon, 11 Nov 2013 19:36:49 +0100 Subject: kern: remove register qualifiers * kern/act.c: Remove register qualifiers. --- kern/act.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kern/act.c b/kern/act.c index 4c3839c..321ff98 100644 --- a/kern/act.c +++ b/kern/act.c @@ -1014,7 +1014,7 @@ act_set_special_port(Act *act, int which, ipc_port_t port) */ kern_return_t act_get_state_immediate(act, flavor, old_state, old_state_count) - register Act *act; + Act *act; int flavor; void *old_state; /* pointer to OUT array */ unsigned int *old_state_count; /*IN/OUT*/ @@ -1040,7 +1040,7 @@ act_get_state_immediate(act, flavor, old_state, old_state_count) */ kern_return_t act_set_state_immediate(act, flavor, new_state, new_state_count) - register Act *act; + Act *act; int flavor; void *new_state; unsigned int new_state_count; -- cgit v1.2.3