Skip to content

Commit

Permalink
Const issues
Browse files Browse the repository at this point in the history
  • Loading branch information
arr2036 committed Jun 20, 2024
1 parent 314af82 commit 9d8f82b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/unlang/xlat_redundant.c
Original file line number Diff line number Diff line change
Expand Up @@ -341,8 +341,8 @@ static int8_t module_xlat_cmp(void const *a, void const *b)
{
int8_t ret;

module_rlm_xlat_t const *mrx_a = talloc_get_type_abort(a, module_rlm_xlat_t);
module_rlm_xlat_t const *mrx_b = talloc_get_type_abort(b, module_rlm_xlat_t);
module_rlm_xlat_t const *mrx_a = talloc_get_type_abort_const(a, module_rlm_xlat_t);
module_rlm_xlat_t const *mrx_b = talloc_get_type_abort_const(b, module_rlm_xlat_t);
char const *a_p, *b_p;

/*
Expand Down

0 comments on commit 9d8f82b

Please sign in to comment.