diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-11-24 16:36:20 +0100 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-11-24 16:47:49 +0100 |
commit | 162142b7930248d83a77e8d8f4eba5896d5b267a (patch) | |
tree | f65796333f80b4f710a19f5fcb6770d6aedbafe6 /include/sqfs/error.h | |
parent | dea3b64dd11a3a3391bd9d8f8c26f20392e7eb3c (diff) |
Cleanup libsquashfs invalid argument error codes
- Add an explicit "you're holding it wrong" error code.
- Consistently return error codes and not have some special places
where -1 is returned.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include/sqfs/error.h')
-rw-r--r-- | include/sqfs/error.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/sqfs/error.h b/include/sqfs/error.h index 9ff77d4..77e33ed 100644 --- a/include/sqfs/error.h +++ b/include/sqfs/error.h @@ -128,6 +128,11 @@ typedef enum { * a regular file or a regular file inode. */ SQFS_ERROR_NOT_FILE = -15, + + /** + * @brief An invalid argument was passed to a library function. + */ + SQFS_ERROR_ARG_INVALID = -16, } E_SQFS_ERROR; #endif /* SQFS_ERROR_H */ |