diff options
author | Miles Bader <miles@gnu.org> | 1996-02-17 21:06:50 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-02-17 21:06:50 +0000 |
commit | 3da0b74a0496aacb870650acdf09c82e920168b2 (patch) | |
tree | 64f0696d7e9291ab7517f13d11db4648fe3e741b /ext2fs | |
parent | 3ec56509aa60dadd0d633454e964ba21144d9244 (diff) |
(main): Check error return from diskfs_init_diskfs.
Diffstat (limited to 'ext2fs')
-rw-r--r-- | ext2fs/ext2fs.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext2fs/ext2fs.c b/ext2fs/ext2fs.c index d70bd853..b0d7495e 100644 --- a/ext2fs/ext2fs.c +++ b/ext2fs/ext2fs.c @@ -67,7 +67,9 @@ main (int argc, char **argv) /* Initialize the diskfs library. This must come before any other diskfs call. */ - diskfs_init_diskfs (); + err = diskfs_init_diskfs (); + if (err) + error (4, err, "init"); err = diskfs_device_open (); if (err) |