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 /lib/common/hardlink.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 'lib/common/hardlink.c')
| -rw-r--r-- | lib/common/hardlink.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lib/common/hardlink.c b/lib/common/hardlink.c index 678a7a3..ab19671 100644 --- a/lib/common/hardlink.c +++ b/lib/common/hardlink.c @@ -73,7 +73,7 @@ fail_insert:  static int compare_inum(const void *ctx, const void *lhs, const void *rhs)  { -	sqfs_u32 l = *((sqfs_u32 *)lhs), r = *((sqfs_u32 *)rhs); +	sqfs_u32 l = *((const sqfs_u32 *)lhs), r = *((const sqfs_u32 *)rhs);  	(void)ctx;  	return l < r ? -1 : (l > r ? 1 : 0); | 
