diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-06-26 20:06:00 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-06-26 20:06:00 +0000 |
commit | bfbb75e4230a0990d44e5c95fcd5da06fcae2dda (patch) | |
tree | ec3b36e5b410c5dfd4fbb20e8655e8c75ca35f44 /libdiskfs/shutdown.c | |
parent | 1cf61e48dc8c07c774997bd316ae1257724fe43c (diff) |
(diskfs_shutdown): Don't actually exit; return zero instead.
Diffstat (limited to 'libdiskfs/shutdown.c')
-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 4264ef9e..293941f4 100644 --- a/libdiskfs/shutdown.c +++ b/libdiskfs/shutdown.c @@ -92,5 +92,5 @@ diskfs_shutdown (int flags) diskfs_set_hypermetadata (1, 1); } - exit (0); + return 0; } |