diff options
-rw-r--r-- | kern/syscall_emulation.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kern/syscall_emulation.c b/kern/syscall_emulation.c index c1c3096..0f4a2be 100644 --- a/kern/syscall_emulation.c +++ b/kern/syscall_emulation.c @@ -71,7 +71,7 @@ void eml_init() void eml_task_reference(task, parent) task_t task, parent; { - register eml_dispatch_t eml; + eml_dispatch_t eml; if (parent == TASK_NULL) eml = EML_DISPATCH_NULL; @@ -96,7 +96,7 @@ void eml_task_reference(task, parent) void eml_task_deallocate(task) task_t task; { - register eml_dispatch_t eml; + eml_dispatch_t eml; eml = task->eml_dispatch; if (eml != EML_DISPATCH_NULL) { |