Skip to content

Commit

Permalink
remove extra ;
Browse files Browse the repository at this point in the history
  • Loading branch information
alandekok committed Nov 27, 2023
1 parent 03a8e4b commit 7e57872
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/unlang/call_env.c
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ void call_env_parsed_set_tmpl(call_env_parsed_t *parsed, tmpl_t const *tmpl)
{
fr_assert_msg(parsed->rule->pair.parsed.type == CALL_ENV_PARSE_TYPE_TMPL, "Rule must indicate parsed output is a tmpl_t");
parsed->data.tmpl = tmpl;
};
}

/** Assign a value box to a call_env_parsed_t
*
Expand All @@ -595,7 +595,7 @@ void call_env_parsed_set_value(call_env_parsed_t *parsed, fr_value_box_t const *
{
fr_assert_msg(parsed->rule->pair.parsed.type == CALL_ENV_PARSE_TYPE_VALUE_BOX, "Rule must indicate parsed output is a value box");
parsed->data.vb = vb;
};
}

/** Assign data to a call_env_parsed_t
*
Expand All @@ -609,7 +609,7 @@ void call_env_parsed_set_data(call_env_parsed_t *parsed, void const *data)
{
fr_assert_msg(parsed->rule->pair.parsed.type == CALL_ENV_PARSE_TYPE_VOID, "Rule must indicate parsed output is a void *");
parsed->data.ptr = data;
};
}

/** Assign a count and index to a call_env_parsed_t
*
Expand Down

0 comments on commit 7e57872

Please sign in to comment.