diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-05-14 18:12:20 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-05-14 18:12:20 +0000 |
commit | be8f477739c8e2666641ecf3ff84ca22a19f8508 (patch) | |
tree | ac1ebee4f3ad079a7b93ac6b7d6be2aba988e0e2 | |
parent | 65f6806f6ab5fe87d385ef9335efdfeee9555e1d (diff) |
(ethernet_open): Delete superfluous arg to assert_perror.
-rw-r--r-- | pfinet/ethernet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pfinet/ethernet.c b/pfinet/ethernet.c index f380f03e..44ed8f39 100644 --- a/pfinet/ethernet.c +++ b/pfinet/ethernet.c @@ -144,7 +144,7 @@ ethernet_open (struct device *dev) etherreadclass = ports_create_class (0, 0); errno = ports_create_port (etherreadclass, etherport_bucket, sizeof (struct port_info), &readpt); - assert_perror (errno, "creating etherread port"); + assert_perror ("creating etherread port"); readptname = ports_get_right (readpt); mach_port_insert_right (mach_task_self (), readptname, readptname, MACH_MSG_TYPE_MAKE_SEND); |