diff options
| author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2013-08-04 14:50:53 +0200 |
|---|---|---|
| committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2013-08-04 14:50:53 +0200 |
| commit | 2da4adea98b371233e313b66e388331e83e0ff64 (patch) | |
| tree | a13397704928aceb07b6b9aba9afa09b06ff039e | |
| parent | 5b6534d7c9cdd0d6f0284cdf6f30b9bcf5fffc52 (diff) | |
Fix the server prototypes
| -rw-r--r-- | reincarnation.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/reincarnation.c b/reincarnation.c index bddac0c..1483d64 100644 --- a/reincarnation.c +++ b/reincarnation.c @@ -169,9 +169,9 @@ static int demuxer (mach_msg_header_t *inp, mach_msg_header_t *outp) { - extern int notify_server (); - extern int reincarnation_server (); - extern int fsys_server (); + extern int notify_server (mach_msg_header_t *, mach_msg_header_t *); + extern int reincarnation_server (mach_msg_header_t *, mach_msg_header_t *); + extern int fsys_server (mach_msg_header_t *, mach_msg_header_t *); return (notify_server (inp, outp) || reincarnation_server (inp, outp) || |
