bug-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 1/5] ipc: remove register qualifiers


From: Marin Ramesa
Subject: [PATCH 1/5] ipc: remove register qualifiers
Date: Mon, 11 Nov 2013 14:08:57 +0100

* ipc/ipc_kmsg.c: Remove register qualifiers.

---
 ipc/ipc_kmsg.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ipc/ipc_kmsg.c b/ipc/ipc_kmsg.c
index 3ad274d..3bdd6b0 100644
--- a/ipc/ipc_kmsg.c
+++ b/ipc/ipc_kmsg.c
@@ -2280,7 +2280,7 @@ ipc_kmsg_copyout_object(space, object, msgt_name, namep)
                goto slow_copyout;
 
     {
-       register ipc_port_t port = (ipc_port_t) object;
+       ipc_port_t port = (ipc_port_t) object;
        ipc_entry_t entry;
 
        is_write_lock(space);
@@ -2313,7 +2313,7 @@ ipc_kmsg_copyout_object(space, object, msgt_name, namep)
        assert(IE_BITS_UREFS(entry->ie_bits) < MACH_PORT_UREFS_MAX);
 
     {
-       register ipc_entry_bits_t bits = entry->ie_bits + 1;
+       ipc_entry_bits_t bits = entry->ie_bits + 1;
 
        if (IE_BITS_UREFS(bits) < MACH_PORT_UREFS_MAX)
                entry->ie_bits = bits;
-- 
1.8.1.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]