summaryrefslogtreecommitdiff
path: root/ipc/ipc_entry.c
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/ipc_entry.c')
-rw-r--r--ipc/ipc_entry.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/ipc/ipc_entry.c b/ipc/ipc_entry.c
index 631de42..42e8dd8 100644
--- a/ipc/ipc_entry.c
+++ b/ipc/ipc_entry.c
@@ -155,10 +155,8 @@ ipc_entry_get(space, namep, entryp)
table = space->is_table;
first_free = table->ie_next;
- if (first_free == 0) {
- printf_once("no more room for ipc_entry_get in space %p\n", space);
+ if (first_free == 0)
return KERN_NO_SPACE;
- }
free_entry = &table[first_free];
table->ie_next = free_entry->ie_next;