diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-06-13 20:19:52 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-06-13 20:19:52 +0000 |
commit | 7dec50753d0b21edab2b6b22c391577027e52f86 (patch) | |
tree | d0cb0f88cb528c598dd4e308bbd94e961fa6ef78 /libfshelp | |
parent | d240a7214e04eae71aa71c078d000fe28583d6ab (diff) |
Fix arg order to fshelp_start_translator_long.
Diffstat (limited to 'libfshelp')
-rw-r--r-- | libfshelp/fshelp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libfshelp/fshelp.h b/libfshelp/fshelp.h index d5942e97..5c26fe5c 100644 --- a/libfshelp/fshelp.h +++ b/libfshelp/fshelp.h @@ -40,11 +40,11 @@ error_t fshelp_start_translator_long (mach_port_t underlying, mach_msg_type_name_t underlying_type, char *name, char *argz, int argz_len, - mach_port_t *ports, int ports_len, - mach_msg_type_name_t ports_type, + mach_port_t *fds, + mach_msg_type_name_t fds_type, int fds_len, + mach_port_t *ports, + mach_msg_type_name_t ports_type, int ports_len, int *ints, int ints_len, - mach_port_t *fds, int fds_len, - mach_msg_type_name_t fds_type, int timeout, fsys_t *control); |