diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-05-10 13:27:38 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-05-10 13:27:38 +0000 |
commit | 8db3d3dd2192e2d875d7eaec7f241e15d7e635ba (patch) | |
tree | 785ab62549ad60c318fab62080091e27ac05b5f8 /term | |
parent | 7ee4ee624c4278b659a591b7f2846360924d1d72 (diff) |
(init_users): Order args correctly in call to ports_create_port.
Diffstat (limited to 'term')
-rw-r--r-- | term/users.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/term/users.c b/term/users.c index 1464e84d..57dfabfd 100644 --- a/term/users.c +++ b/term/users.c @@ -78,8 +78,8 @@ struct protid_hook void init_users () { - errno = ports_create_port (term_bucket, sizeof (struct port_info), - cttyid_class, &cttyid); + errno = ports_create_port (cttyid_class, term_bucket, + sizeof (struct port_info), &cttyid); if (errno) { perror ("Allocating cttyid"); |