diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2021-06-24 16:07:45 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2021-06-25 15:12:41 +0200 |
commit | 8348086b48af0cbabe4cf2b64992ced6561ea50c (patch) | |
tree | a77cb51107c1b67c9fc1e1c08d45ef1947a95e80 /tests/libutil/rbtree.c | |
parent | 0880db76afe85391430c547a67bad54b655a66e1 (diff) |
Remove casual un-const casting in various places
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'tests/libutil/rbtree.c')
-rw-r--r-- | tests/libutil/rbtree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libutil/rbtree.c b/tests/libutil/rbtree.c index 25c9b61..c430d67 100644 --- a/tests/libutil/rbtree.c +++ b/tests/libutil/rbtree.c @@ -12,7 +12,7 @@ static int key_compare(const void *ctx, const void *a, const void *b) { (void)ctx; - return *((sqfs_s32 *)a) - *((sqfs_s32 *)b); + return *((const sqfs_s32 *)a) - *((const sqfs_s32 *)b); } static size_t count_nodes_dfs(rbtree_node_t *n) |