diff options
author | Justus Winter <justus@gnupg.org> | 2017-09-25 13:04:57 +0200 |
---|---|---|
committer | Justus Winter <justus@gnupg.org> | 2017-09-25 13:06:10 +0200 |
commit | 21c123402ef4fec7b9ca8e31017f1a003305e9a1 (patch) | |
tree | f882f8176348e6cf72f6bed5da6e511a82fd9bd3 /libdiskfs/init-main.c | |
parent | 7b9011628ec0dea3e01b19b75013ce5cf5b9c841 (diff) | |
download | hurd-21c123402ef4fec7b9ca8e31017f1a003305e9a1.tar.gz hurd-21c123402ef4fec7b9ca8e31017f1a003305e9a1.tar.bz2 hurd-21c123402ef4fec7b9ca8e31017f1a003305e9a1.zip |
libdiskfs: Improve error message.
* libdiskfs/init-main.c (diskfs_init_main): Use name of the function
that failed as error message.
Diffstat (limited to 'libdiskfs/init-main.c')
-rw-r--r-- | libdiskfs/init-main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdiskfs/init-main.c b/libdiskfs/init-main.c index 5c29b7b8..69c30fd1 100644 --- a/libdiskfs/init-main.c +++ b/libdiskfs/init-main.c @@ -61,7 +61,7 @@ diskfs_init_main (struct argp *startup_argp, /* Initialize the diskfs library. Must come before any other diskfs call. */ err = diskfs_init_diskfs (); if (err) - error (4, err, "init"); + error (4, err, "diskfs_init_diskfs"); err = store_parsed_open (*store_parsed, diskfs_readonly ? STORE_READONLY : 0, &store); |