diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-06-20 15:59:18 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-06-20 15:59:18 +0000 |
commit | 495409330567d8a8cbaee3745a73a172ad11bc10 (patch) | |
tree | 183c0430e2237217bf6c1a004edfccaff2d4ec16 | |
parent | 958bfec1c18be4d1a19a77a01f8bb7bb970f3e80 (diff) |
(diskfs_shutdown): Fix first arg to fshelp_fetch_control.
-rw-r--r-- | libdiskfs/shutdown.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdiskfs/shutdown.c b/libdiskfs/shutdown.c index c42ea06e..c7c6ba22 100644 --- a/libdiskfs/shutdown.c +++ b/libdiskfs/shutdown.c @@ -37,7 +37,7 @@ diskfs_shutdown (int flags) error_t error; mach_port_t control; - error = fshelp_fetch_control (np, &control); + error = fshelp_fetch_control (&np->transbox, &control); if (!error && (control != MACH_PORT_NULL)) { error = fsys_goaway (control, flags); |