Skip to content

Commit

Permalink
const param_prefix_len
Browse files Browse the repository at this point in the history
  • Loading branch information
sloretz authored and mikaelarguedas committed Jun 5, 2018
1 parent 8e5d553 commit 449ccb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rcl/src/rcl/arguments.c
Original file line number Diff line number Diff line change
Expand Up @@ -942,7 +942,7 @@ _rcl_parse_param_rule(
RCL_CHECK_ARGUMENT_FOR_NULL(arg, RCL_RET_INVALID_ARGUMENT, allocator);

const char * param_prefix = "__params:=";
size_t param_prefix_len = strlen(param_prefix);
const size_t param_prefix_len = strlen(param_prefix);
if (strncmp(param_prefix, arg, param_prefix_len) == 0) {
size_t outlen = strlen(arg) - param_prefix_len;
*output_rule = allocator.allocate(sizeof(char) * (outlen + 1), allocator.state);
Expand Down

0 comments on commit 449ccb9

Please sign in to comment.