@@ -42,7 +42,7 @@ extern "C" {
4242
4343#ifdef __GNUC__
4444#define TSK_WARN_UNUSED __attribute__((warn_unused_result))
45- #define TSK_UNUSED (x ) TSK_UNUSED_##x __attribute__((__unused__))
45+ #define TSK_UNUSED (x ) TSK_UNUSED_##x __attribute__((__unused__))
4646#else
4747#define TSK_WARN_UNUSED
4848#define TSK_UNUSED (x ) TSK_UNUSED_##x
@@ -93,11 +93,11 @@ missing data.
9393 * on the thread above.
9494 */
9595typedef int64_t tsk_id_t ;
96- #define TSK_MAX_ID INT64_MAX - 1
96+ #define TSK_MAX_ID INT64_MAX - 1
9797#define TSK_ID_STORAGE_TYPE KAS_INT64
9898#else
9999typedef int32_t tsk_id_t ;
100- #define TSK_MAX_ID INT32_MAX - 1
100+ #define TSK_MAX_ID INT32_MAX - 1
101101#define TSK_ID_STORAGE_TYPE KAS_INT32
102102#endif
103103
@@ -109,7 +109,7 @@ The ``tsk_size_t`` type is an unsigned integer used for any size or count value.
109109@endrst
110110*/
111111typedef uint64_t tsk_size_t ;
112- #define TSK_MAX_SIZE UINT64_MAX
112+ #define TSK_MAX_SIZE UINT64_MAX
113113#define TSK_SIZE_STORAGE_TYPE KAS_UINT64
114114
115115/**
@@ -152,7 +152,7 @@ to the API or ABI are introduced, i.e., the addition of a new function.
152152The library patch version. Incremented when any changes not relevant to the
153153to the API or ABI are introduced, i.e., internal refactors of bugfixes.
154154*/
155- #define TSK_VERSION_PATCH 0
155+ #define TSK_VERSION_PATCH 1
156156/** @} */
157157
158158/*
0 commit comments