aboutsummaryrefslogtreecommitdiff
path: root/kern/syscall_emulation.c
diff options
context:
space:
mode:
authorFlavio Cruz <flaviocruz@gmail.com>2023-01-19 14:22:31 -0500
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2023-01-19 23:33:16 +0100
commitc5134c7759b7a3f0c4ed0b57a1ab8e49666ee4b6 (patch)
treeb0dfa3fb6696453a921d088a0b0099fd1b8cd285 /kern/syscall_emulation.c
parent4a1be513c08971b69d80f00478ade68cb25e7d3b (diff)
downloadgnumach-c5134c7759b7a3f0c4ed0b57a1ab8e49666ee4b6.tar.gz
gnumach-c5134c7759b7a3f0c4ed0b57a1ab8e49666ee4b6.tar.bz2
gnumach-c5134c7759b7a3f0c4ed0b57a1ab8e49666ee4b6.zip
Remove existing old style definitions and use -Wold-style-definition.
Message-Id: <Y8mYd/pt/og4Tj5I@mercury.tail36e24.ts.net>
Diffstat (limited to 'kern/syscall_emulation.c')
-rw-r--r--kern/syscall_emulation.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/kern/syscall_emulation.c b/kern/syscall_emulation.c
index 50db1949..620c2351 100644
--- a/kern/syscall_emulation.c
+++ b/kern/syscall_emulation.c
@@ -95,8 +95,7 @@ void eml_task_reference(
* Cleans up after the emulation code when a process exits.
*/
-void eml_task_deallocate(task)
- const task_t task;
+void eml_task_deallocate(const task_t task)
{
eml_dispatch_t eml;