Skip to content

Commit

Permalink
quiet compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
alandekok committed Oct 3, 2023
1 parent c07accb commit 7b99be7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/unlang/xlat_expr.c
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ static xlat_action_t xlat_binary_op(TALLOC_CTX *ctx, fr_dcursor_t *out,
break;

case FR_TYPE_OCTETS:
fr_value_box_strdup_shallow(a, NULL, (void *) "", false);
fr_value_box_strdup_shallow(a, NULL, (void const *) "", false);
break;

default:
Expand All @@ -436,7 +436,7 @@ static xlat_action_t xlat_binary_op(TALLOC_CTX *ctx, fr_dcursor_t *out,
break;

case FR_TYPE_OCTETS:
fr_value_box_strdup_shallow(b, NULL, (void *) "", false);
fr_value_box_strdup_shallow(b, NULL, (void const *) "", false);
break;

default:
Expand Down

0 comments on commit 7b99be7

Please sign in to comment.